/*
    ----------------------------------- 
            方法变量    
                     
    Create Time : 2014-07-22
    Update Time : 2015-08-03
    Author      : Trueland Development Department
    -----------------------------------
*/
/*
    ---------------------- 
            普通方法 
    ---------------------- 

    1 .opc()              // 透明度     - 传整数 50 代表 0.5   
    2 .pos(r)             // 定位方式 - 必须传参，r 代表relative || a 代表absolute ||  f 代表 fixed
    3 .font()             // 字体大小 - 默认12px 
    4 .align()            // 文本对齐 - 默认 center
    5 .lineH()            // 行高设置 - 默认 20px
   11 .arrow(r)           // 三角箭头 - 必须传参    l:向左箭头 | r:向右箭头 | t:向上箭头 | b:向下箭头
   12 .float()            // 快速浮动 - 默认为 left ||  left: 向左浮动   | right:向右浮动
   13 .fontC(d)           // 字大小写 - 比传参数 d 为 大写 s 为首字母大写
   14 .fontB()            // 字体粗细 - 默认加粗  fontB(100) 传100 就是 变细

   ----------------------
   CSS3 方法 
   ---------------------- 

   01 .borderR()          // 圆角设置 - 默认为 5px
   02 .linearG(red,blue)  // 线性渐变 - 两个颜色值 是开始到结束  目前支持 *上下* 渐变
   03 .bgFull             // 背景充满 - 背景等比例拉伸 使用 ：bgFull;
   04 .css3Tansition()    // 过度属性 - 默认两个值 前者是过渡动画时间 后者是过渡动画效果 使用 : .css3tansition(.4s,ease)
   

   //滤镜

   05 .filterBlur()       // 滤镜模糊 - 使用 ：.filterBlur(2px); 默认 5px
   06 .filterGrayscale()  // 滤镜灰度 - 使用 ：.filterGrayscale(100%); 默认100% ★注意参数 是 0%~100$; 100%代表全灰
   07 .filterSepia()      // 滤镜褐色 - 使用 ： .filterSepia(1); 默认1 ★注意参数 (同上)
   08 .filterBrightness() // 滤镜亮度 - 使用 ： .filterBrightness(10); 默认5 ★注意参数 10代表100% 5代表50%
   09 .filterHue()        // 滤镜色相 - 使用 ： .filterHue(180deg); 默认180deg ★注意参数 0deg~360deg
   10 .filterInvert()     // 滤镜反色 - 使用 ： .filterInvert(1); 默认1 ★注意参数 0.1~1 1代表100%
   11 .filterSaturate()   // 滤镜饱和 - 使用 ： .filterSaturate(5); 默认5 ★注意参数 5 代表 50%
   12 .filterContrast()   // 滤镜对比 - 使用 ： .filterContrast(1.5); 默认1.5 ★注意参数 1.5代表 15%
    
   ----------------------
        普通嵌套 
   ---------------------- 

   01 .vcenter            // 垂直水平居中
   02 .tHide              // 文本超出隐藏省略
   03 .blockFull          // 块状元素 宽高100%
   04 .block              // 块状元素 没有设置宽高
   05 .centerBlock        // 左右居中
   05 .clearfix           // 清除浮动

    -----------------------------------
*/
.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/cover.htc);
  behavior: url(css/cover.htc);
}

.vcenter {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.tHide {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.blockFull {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.block {
  display: block;
  position: relative;
}

.centerBlock {
  margin-left: auto;
  margin-right: auto;
}

.clearfix {
  clear: both;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}

.slick-list:focus {
  outline: none;
}

.slick-loading .slick-list {
  background: #ffffff url("../images/ajax-loader.gif") center center no-repeat;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.axrd_guoMain {
  width: 380px;
  margin-top: 25px;
}

.axrd_guoMain>div:nth-child(2) {
  margin-top: 16px;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-prev,
.slick-next {
  z-index: 20;
  position: absolute;
  display: block;
  height: 60px;
  width: 30px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -30px;
  padding: 0;
  border: none;
  outline: none;
  border: 1px solid red;
}

.slick-prev {
  left: 30px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: 30px;
}

.slick-next {
  right: 30px;
}

[dir="rtl"] .slick-next {
  left: 30px;
  right: auto;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  height: auto;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  line-height: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  display: block;
  height: 10px;
  width: 10px;
  padding: 0;
  margin: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: #cccccc;
  border-radius: 0px;
}

.slick-dots li.slick-active button {
  background: #333333;
}

img {
  max-width: 100%;
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
}

.home_top {
  background: #1b1b1e;
  height: 40px;
  position: relative;
  z-index: 12;
}

.home_top .t {
  float: left;
  display: inline-block;
  line-height: 40px;
  color: #d1d1d2;
  font-size: 12px;
  background: url(../images/gcctv.png) no-repeat left center;
  padding-left: 26px;
}

.home_top .right {
  float: right;
  display: table;
}

.home_top .right a {
  position: relative;
  display: block;
  float: left;
  color: #d1d1d2;
  font-size: 12px;
  line-height: 40px;
  padding: 0 15px;
}

.home_top .right a:last-child {
  padding-right: 0;
}

.home_top .right a:first-child:before {
  display: none;
}

.home_top .right a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 1px;
  height: 11px;
  background: url(../images/gicon1.png) no-repeat center center;
}

.home_top .right a.reserve {
  background: #cc0000;
  color: #fff;
}

.home_top .right a.reserve:hover {
  color: #fff;
}

.home_top .right a.phone i {
  display: inline-block;
  width: 14px;
  height: 22px;
  background: url(../images/gphone.png) no-repeat center center;
  margin-right: 8px;
  position: relative;
  top: 6px;
}

.home_top .right a.phone .ewm {
  display: none;
  position: absolute;
  right: -1px;
  top: 40px;
  z-index: 2;
  width: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.home_top .right a.phone .ewm span {
  position: relative;
  z-index: 2;
  line-height: 0;
  display: block;
  width: 100px;
  height: 100px;
}

.home_top .right a.phone .ewm span img {
  width: 100px;
  height: 100px;
  top: 0;
  position: relative;
}

.home_top .right a.phone .ewm span:before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -6px;
  left: 43px;
  width: 15px;
  height: 8px;
  background: url(../images/ewm_jt.png) no-repeat center center / cover;
}

.home_top .right a.phone:hover .ewm {
  display: block;
}

.home_top .right a:hover {
  color: #dd1721;
}

.header {
  height: 75px;
  background: rgb(255,255,255);
}

.header .logo {
  margin-top: 15px;
  line-height: 0;
  display: block;
}

.header .search {
  margin-right: 12px;
  margin-top: 18px;
  width: 242px;
  float: right;
  height: 38px;
  border: 1px solid #dddddd;
  background: #FFFFFF;
  border-radius: 3px;
}

.header .search .ontxl {
  width: 68px;
  float: left;
  position: relative;
}

.header .search .ontxl .selectxz {
  display: block;
  width: 100%;
  float: left;
  height: 36px;
  line-height: 36px;
  font-size: 12px;
  cursor: pointer;
  padding-left: 11px;
  position: relative;
}

.header .search .ontxl .selectxz:before {
  content: "";
  position: absolute;
  right: 0;
  top: 9px;
  width: 26px;
  height: 20px;
  background: url(../images/gicon2.jpg) no-repeat center center;
}

.header .search .ontxl .selectbox {
  display: none;
  position: absolute;
  left: -1px;
  top: 37px;
  border: 1px solid #ccc;
  border-top: none;
  *background: #fff;
  width: 69px;
  z-index: 999;
  padding: 3px 0 5px;
  background: #fff;
}

.header .search .ontxl .selectbox a {
  display: block;
  overflow: hidden;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  padding-left: 11px;
}

.header .search .ontxl .selectbox a:hover {
  color: #104ca0;
}

.header .search .wenb {
  width: 172px;
  height: 36px;
  float: left;
}

.header .search .wenb .iptxt {
  width: 142px;
  float: left;
  height: 36px;
  line-height: 36px;
  font-size: 12px;
  border: none;
  padding: 0 10px;
}

.header .search .wenb .ipbtn {
  width: 29px;
  height: 35px;
  background: url(../images/gtbtn.png) no-repeat center center;
  border: none;
  float: right;
}

.header .right {
  float: right;
  display: table;
  padding-top: 19px;
}

.header .right .text_div {
  position: relative;
  float: left;
  padding: 0 20px;
  background: url(../images/gtpic.jpg) no-repeat left center;
}

.header .right .text_div .img {
  float: left;
  display: table;
  margin-right: 10px;
  margin-top: 2px;
}

.header .right .text_div .text {
  float: left;
}

.header .right .text_div .text .bt {
  color: #666666;
  font-size: 16px;
  font-weight: bold;
  line-height: 31px;
}

.header .right .text_div .text .t {
  color: #888888;
  font-size: 12px;
}

.header .right .text_div .text .dh {
  width: 141px;
  height: 15px;
  margin-bottom: 5px;
}

.header .right .text_div:last-child {
  padding-right: 0;
}

.header .right .text_div .tc_ax {
  display: none;
  z-index: 12;
  position: absolute;
  right: -120px;
  top: 57px;
  width: 510px;
  background: url(../images/tc_ax_bg.png);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 22px 25px;
}

.header .right .text_div .tc_ax:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 310px;
  width: 19px;
  height: 10px;
  background: url(../images/ax_jt.png) no-repeat center center / cover;
}

.header .right .text_div .tc_ax .ax_gn {
  float: left;
  width: 335px;
}

.header .right .text_div .tc_ax span {
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  display: block;
}

.header .right .text_div .tc_ax .ax_gn dl {
  margin-top: 10px;
}

.header .right .text_div .tc_ax .ax_gn dl dt,
.header .right .text_div .tc_ax .ax_gn dl dd {
  width: 50%;
  float: left;
}

.header .right .text_div .tc_ax .ax_gn dl dt div,
.header .right .text_div .tc_ax .ax_gn dl dd div {
  display: block;
  width: 100%;
  float: left;
  line-height: 24px;
}

.header .right .text_div .tc_ax .ax_gn dl dt div span,
.header .right .text_div .tc_ax .ax_gn dl dd div span {
  float: left;
  font-weight: normal;
  color: #666666;
  font-size: 14px;
  font-family: arial;
  width: 10px;
  margin-right: 5px;
}

.header .right .text_div .tc_ax .ax_gn dl dt div a,
.header .right .text_div .tc_ax .ax_gn dl dd div a {
  display: block;
  float: left;
  padding: 0 5px;
  color: #666666;
}

.header .right .text_div .tc_ax .ax_gn dl dt div a:hover,
.header .right .text_div .tc_ax .ax_gn dl dd div a:hover,
.header .right .text_div .tc_ax .ax_gn dl dt div a.cur,
.header .right .text_div .tc_ax .ax_gn dl dd div a.cur {
  background: #eaebed;
}

.header .right .text_div .tc_ax .ax_gj {
  float: right;
  width: 105px;
  padding-left: 20px;
  border-left: 1px dotted #666;
  margin-left: 20px;
}

.header .right .text_div .tc_ax .ax_gj span {
  margin-bottom: 10px;
}

.header .right .text_div .tc_ax .ax_gj a {
  display: block;
  color: #666666;
  line-height: 24px;
}

.header .right .text_div .tc_ax .ax_gj a:hover {
  color: #333;
  text-decoration: underline;
}

.nav {
  position: relative;
  z-index: 10;
  background: #14264e;
}

.nav .w1200 {
  height: 54px;
}

.nav .w1200 ul {
  border-radius: 3px;
}

.nav>div>ul>li {
  float: left;
  font-size: 18px;
  width: 10%;
  text-align: center;
}

.nav ul li.v1:before {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  width: 1px;
  height: 19px;
  background: url(../images/nav_icon6.png) no-repeat center center;
}

.nav ul li.v1:last-child::before {
  display: none;
}

.nav ul li.v1>a {
  display: block;
  line-height: 54px;
  color: #fff;
}

.nav ul li.v1>a i {
  display: inline-block;
  width: 7px;
  height: 4px;
  background: url(../images/jt_icon7.png) no-repeat center center;
  margin-left: 10px;
  position: relative;
  top: -3px;
}

.nav ul li.v1.cur,
.nav ul li.v1:hover {
  background: #dd1721;
}

.nav ul>li .nav_t {
  display: none;
  position: absolute;
  left: 0;
  top: 54px;
  width: 1106px;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 0;
}

.nav ul>li:nth-child(5) .nav_t {
  left: -300px !important;
}

.nav ul>li:nth-child(6) .nav_t {
  left: -450px !important;
}

.nav ul>li .nav_t:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 124px;
  background: rgba(0, 0, 0, 0.72);
  height: 100%;
  z-index: -1;
}

.nav ul>li .nav_t .nav_table {
  float: left;
  width: 124px;
}

.nav ul>li .nav_t .nav_table a {
  display: block;
  text-align: center;
  color: #DEDEDE;
  font-size: 15px;
  line-height: 50px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.nav ul>li .nav_t .nav_table a:before {
  display: none;
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  margin-top: -5px;
  width: 5px;
  height: 10px;
  background: url(../images/g_icon.png) no-repeat center center;
}

.nav ul>li .nav_t .nav_table a.cur,
.nav ul>li .nav_t .nav_table a:hover {
  background: #424242;
  color: #fff;
}

.nav ul>li .nav_t .nav_table a.cur:before,
.nav ul>li .nav_t .nav_table a:hover:before {
  display: block;
}

.nav ul>li .nav_t .nav_btn {
  float: right;
  width: 978px;
  padding: 0 50px;
}

.nav ul>li .nav_t .nav_btn ol {
  margin-top: 8px;
}

.nav ul>li .nav_t .nav_btn ol li {
  margin-bottom: 30px;
  float: left;
  width: 190px;
  margin-right: 39px;
}

.nav ul>li .nav_t .nav_btn ol li .bt {
  padding: 10px 0;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.nav ul>li .nav_t .nav_btn ol li .bt:hover {
  background: #dd1721;
}

.nav ul>li .nav_t .nav_btn ol li .b_con {
  margin-top: 8px;
}

.nav ul>li .nav_t .nav_btn ol li .b_con a {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 28px;
  display: inline-block;
  margin-right: 5px;
}

.nav ul>li .nav_t .nav_btn ol li .b_con a:hover {
  color: #d71b25;
}

.nav ul>li .nav_t .nav_btn ol li:nth-child(4n) {
  margin-right: 0;
}

.nav>ul>li:hover {
  background: #dd1721;
}

.nav ul>li:hover .nav_t {
  display: block;
}

.links {
  background: #151e2a;
  padding: 22px 0;
  line-height: 24px;
}

.links span {
  top: -1px;
  display: inline-block;
  float: left;
  color: #ffffff;
  font-size: 16px;
  position: relative;
  padding-left: 13px;
}

.links span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 16px;
  background: #990808;
}

.links .link {
  margin-left: 20px;
  float: left;
  width: 1100px;
}

.links .link a {
  display: block;
  float: left;
  font-size: 14px;
  color: #68727f;
  margin: 0 12px;
}

.links .link a:hover {
  color: #fff;
}

.footer {
  background: #1f2a3a;
  padding: 42px 0 20px;
  border-bottom: 1px solid #293341;
}

.footer .foot_div {
  position: relative;
}

.footer .foot_div .foot_nav {
  float: left;
  width: 804px;
}

.footer .foot_div .foot_nav ul li {
  float: left;
  border-left: 1px solid #36404e;
  padding-left: 12px;
  min-height: 138px;
}

.footer .foot_div .foot_nav ul li .bt {
  position: relative;
  top: -3px;
  color: #ffffff;
  font-size: 16px;
}

.footer .foot_div .foot_nav ul li .bt:before {
  content: "";
  position: absolute;
  left: -13px;
  top: 3px;
  width: 2px;
  height: 18px;
  background: #990808;
}

.footer .foot_div .foot_nav ul li .nav_a {
  margin-top: 5px;
}

.footer .foot_div .foot_nav ul li .nav_a a {
  display: block;
  color: #898d92;
  font-size: 14px;
  line-height: 28px;
}

.footer .foot_div .foot_nav ul li .nav_a a:hover {
  color: #fff;
}

.footer .foot_div .foot_rx {
  float: left;
  width: 292px;
  border-left: 1px solid #36404e;
  padding-left: 12px;
  min-height: 138px;
}

.footer .foot_div .foot_rx .bt {
  position: relative;
  top: -3px;
  color: #ffffff;
  font-size: 16px;
}

.footer .foot_div .foot_rx .bt:before {
  content: "";
  position: absolute;
  left: -13px;
  top: 3px;
  width: 2px;
  height: 18px;
  background: #990808;
}

.footer .foot_div .foot_rx .dh {
  margin-top: 10px;
  color: #dddddd;
  font-size: 32px;
  font-family: arial;
}

.footer .foot_div .foot_rx .gz {
  margin-top: 10px;
  color: #ffffff;
  font-size: 16px;
}

.footer .foot_div .foot_rx .gz_con {
  margin-top: 13px;
}

.footer .foot_div .foot_rx .gz_con a {
  display: block;
  float: left;
  height: 18px;
  margin-right: 12px;
}

.footer .foot_div .foot_rx .tsjy {
  margin-top: 15px;
  line-height: 30px;
}

.footer .foot_div .foot_rx .tsjy p {
  background: url(../images/ts.png) no-repeat left center;
  padding-left: 40px;
  color: #1294d7;
}

.footer .foot_div .foot_ewm {
  position: absolute;
  right: 0;
  top: 0;
  float: right;
  width: 104px;
}

.footer .foot_div .foot_ewm .img {
  width: 100%;
}

.footer .foot_div .foot_ewm .img span {
  width: 104px;
  height: 106px;
  display: block;
}

.footer .foot_div .foot_ewm .img p {
  margin-top: 8px;
  color: #dddddd;
  font-size: 12px;
  text-align: center;
}

.footer .foot_gj {
  margin-top: 20px;
}

.footer .foot_gj ul li {
  float: left;
  width: 100%;
  margin: 5px 0;
}

.footer .foot_gj ul li span {
  display: inline-block;
  float: left;
  color: #ffffff;
  font-size: 16px;
}

.footer .foot_gj ul li .con {
  float: left;
  width: 1024px;
}

.footer .foot_gj ul li .con a {
  display: block;
  float: left;
  color: #898d92;
  font-size: 15px;
  padding: 0 10px;
  position: relative;
}

.footer .foot_gj ul li .con a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  width: 1px;
  height: 10px;
  background: #52555b;
}

.footer .foot_gj ul li .con a:last-child:before {
  display: none;
}

.footer .foot_gj ul li .con a:hover {
  color: #fff;
}

.footer .navigate {
  margin-top: 10px;
  font-size: 15px;
  color: #898d92;
}

.footer .navigate a {
  color: #898d92;
}

.footer .navigate a:hover {
  color: #fff;
}

.banquan {
  background: #1f2a3a;
  padding: 20px 0;
  text-align: center;
  color: #b8b8b8;
  font-size: 13px;
  line-height: 40px;
}

.banquan .tb a {
  height: 40px;
  float: left;
  display: block;
  margin-right: 12px;
}

.banquan p a {
  display: inline-block;
  color: #b8b8b8;
}

.banquan p a:hover {
  text-decoration: underline;
}

.bannerV2 {
  position: relative;
  height: 420px;
  width: 1920px;
  left: 50%;
  overflow: hidden;
  margin-left: -960px;
}

.bannerV2 img {
  height: 420px;
  width: 1920px;
}

.bannerV2 .slick-prev,
.bannerV2 .slick-next {
  width: 40px;
  height: 78px;
  border: none;
  margin-top: -39px;
}

.bannerV2 .slick-prev {
  left: 3%;
  background: url(../images/guo_prev.png) no-repeat center center / cover;
}

.bannerV2 .slick-next {
  right: 3%;
  background: url(../images/guo_next.png) no-repeat center center / cover;
}

.bannerV2 .slick-dots {
  z-index: 3;
}

.bannerV2 .slick-dots li button {
  border-radius: 50%;
  background: #ffffff;
}

.bannerV2 .slick-dots li.slick-active button {
  background: #cc0000;
}


.banner_box {
  position: relative;
}

.banner_box .colonial_box {
  position: absolute;
  left: 50%;
  top: 37px;
  margin-left: -600px;
  width: 1200px;
}

.banner_box .colonial_box ul {
  width: 270px;
  background: #e8eaef;
  border-radius: 2px;
}

.banner_box .colonial_box ul li {
  float: left;
  width: 100%;
  padding: 10px 18px;
  border-bottom: 1px dotted #c8cacc;
}

.banner_box .colonial_box ul li .bt {
  color: #333333;
  font-size: 15px;
}

.banner_box .colonial_box ul li .text {
  font-size: 12px;
  margin-top: 4px;
  margin-left: -12px;
}

.banner_box .colonial_box ul li .text a {
  display: block;
  float: left;
  color: #69696a;
  margin-left: 12px;
}

.banner_box .colonial_box ul li .text a:hover {
  color: #dd1721;
}

.banner_box .colonial_box .img {
  width: 270px;
  line-height: 0;
  height: 49px;
  position: relative;
}

.banner_box .colonial_box .img span {
  position: absolute;
  left: 10px;
  top: 0;
  width: 35px;
  height: 49px;
}

.guo_home_tit {
  position: relative;
  color: #292929;
  font-size: 24px;
}

.guo_home_tit span {
  display: inline-block;
  color: #666666;
  font-size: 14px;
  text-transform: uppercase;
  margin-left: 10px;
}

.guo_home_tit a {
  position: absolute;
  right: 0;
  top: 12px;
  color: #888888;
  font-size: 12px;
  text-transform: uppercase;
  font-family: arial;
}

.guo_home_tit a:hover {
  color: #e00d1b;
}

.guo_home_div2 {
  background: url(../images/ghome_bg01.jpg) no-repeat center center;
  padding-top: 20px;
  padding-bottom: 10px;
}

.guo_home_div2 .home_con {
  position: relative;
  line-height: 54px;
  height: 65px;
  background: url(../images/ghome_bg02.png) no-repeat center center;
}

.guo_home_div2 .home_con .home_list {
  position: absolute;
  left: 410px;
  top: 0px;
}

.guo_home_div2 .home_con .home_list a {
  padding: 0 17px;
  color: #666666;
  font-size: 15px;
  display: block;
  float: left;
}

.guo_home_div2 .home_con .home_list a.cur,
.guo_home_div2 .home_con .home_list a:hover {
  color: #ff0000;
  background: #fed5d7;
}

.guo_home_div2 ul {
  margin-top: 20px;
}

.guo_home_div2 ul li {
  float: left;
  margin: 0 28px 28px 0;
  width: 381px;
  height: 296px;
  background: rgba(255, 255, 255, 0.6);
}

.guo_home_div2 ul li .img {
  display: block;
  width: 381px;
  height: 205px;
  position: relative;
  overflow: hidden;
}

.guo_home_div2 ul li .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_home_div2 ul li .text {
  padding: 12px 24px 0;
}

.guo_home_div2 ul li .text .bt {
  display: block;
  color: #333333;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_home_div2 ul li .text .t {
  color: #858585;
  font-size: 13px;
  line-height: 18px;
  height: 36px;
  overflow: hidden;
  margin-top: 5px;
}

.guo_home_div2 ul li:nth-child(3n) {
  margin-right: 0;
}

.guo_home_div2 ul li:hover {
  -webkit-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.3);
}

.guo_home_div {
  padding: 30px 0;
}

.guo_home_div .home_con {
  position: relative;
}

.guo_home_div .home_con .more {
  position: absolute;
  right: 0;
  top: 10px;
  text-transform: uppercase;
  color: #888888;
  font-size: 12px;
}

.guo_home_div .home_con .more:hover {
  color: #e00b1d;
}

.guo_home_div .gq_list {
  margin-top: 30px;
  border: 1px solid #f0f0f0;
  height: 81px;
  padding: 0 20px;
}

.guo_home_div .gq_list li {
  position: relative;
  float: left;
  width: 193px;
  padding: 17px 12px 0;
}

.guo_home_div .gq_list li .img {
  float: left;
  width: 66px;
  height: 46px;
  border: 1px solid #eeeeee;
  position: relative;
}

.guo_home_div .gq_list li .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_home_div .gq_list li .text {
  padding-left: 10px;
  width: 103px;
  float: left;
}

.guo_home_div .gq_list li .text .bt {
  margin-top: 2px;
  color: #000000;
  font-size: 14px;
}

.guo_home_div .gq_list li .text .yw {
  margin-top: 5px;
  color: #999999;
  font-size: 12px;
  font-family: arial;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_home_div .gq_list li .icon {
  display: none;
  position: absolute;
  left: 0;
  top: -5px;
  width: 193px;
  height: 98px;
  background: url(../images/guogq_hover.png) no-repeat center center;
}

.guo_home_div .gq_list li:hover .icon,
.guo_home_div .gq_list li.cur .icon {
  display: block;
}

.guo_home_div dl {
  margin-top: 40px;
}

.guo_home_div dl dt {
  width: 789px;
}

.guo_home_div dl dt .img {
  float: left;
  display: block;
  width: 381px;
  height: 205px;
  position: relative;
}

.guo_home_div dl dt .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_home_div dl dt .text {
  position: relative;
  height: 205px;
  width: 379px;
  float: right;
  padding-top: 15px;
}

.guo_home_div dl dt .text .bt {
  display: block;
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_home_div dl dt .text .bt:hover {
  color: #0072ae;
}

.guo_home_div dl dt .text .t {
  margin-top: 8px;
  color: #777777;
  font-size: 14px;
  line-height: 22px;
  height: 110px;
  overflow: hidden;
}

.guo_home_div dl dt .text .more {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #0072ae;
  display: inline-block;
  background: url(../images/gicon6.png) no-repeat right 8px;
  padding-right: 17px;
}

.guo_home_div dl dd {
  width: 384px;
}

.guo_home_div dl dd .tit {
  position: relative;
  color: #333333;
  font-size: 18px;
}

.guo_home_div dl dd .tit a {
  position: absolute;
  right: 0;
  top: 5px;
  text-transform: uppercase;
  color: #888888;
  font-size: 12px;
}

.guo_home_div dl dd .tit a:hover {
  color: #e00b1d;
}

.guo_home_div dl dd .con {
  margin-top: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #c6c6c6;
}

.guo_home_div dl dd .con .img {
  float: left;
  display: block;
  width: 90px;
  height: 70px;
  position: relative;
}

.guo_home_div dl dd .con .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_home_div dl dd .con .text {
  float: right;
  width: 276px;
  color: #777777;
  font-size: 13px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
}

.guo_home_div dl dd ul {
  margin-top: 5px;
}

.guo_home_div dl dd ul li {
  float: left;
  width: 100%;
  line-height: 26px;
  font-size: 13px;
}

.guo_home_div dl dd ul li a {
  float: left;
  display: block;
  max-width: 75%;
  color: #666666;
  background: url(../images/gicon7.png) no-repeat left center;
  padding-left: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_home_div dl dd ul li span {
  display: inline-block;
  float: right;
  color: #888888;
}

.guo_home_div dl dd ul li:hover a {
  color: #0072ae;
  background: url(../images/gicon8.png) no-repeat left center;
}

.guo_home_div3 {
  background: #ededed;
  padding: 30px 0;
}

.guo_home_div3 .left {
  width: 792px;
}

.guo_home_div3 .left .home_con {
  position: relative;
}

.guo_home_div3 .left .home_con .more {
  position: absolute;
  right: 0;
  top: 10px;
  text-transform: uppercase;
  color: #888888;
  font-size: 12px;
}

.guo_home_div3 .left .home_con .more:hover {
  color: #e00b1d;
}

.guo_home_div3 .left .guo_home_hd {
  margin-top: 15px;
  width: 100%;
  height: 349px;
  overflow: hidden;
}

.guo_home_div3 .left .guo_home_hd .text {
  width: 100%;
  height: 349px;
  position: relative;
  overflow: hidden;
}

.guo_home_div3 .left .guo_home_hd .text img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_home_div3 .left .guo_home_hd .text .text_div {
  position: absolute;
  right: 0;
  top: 0;
  height: 349px;
  width: 382px;
  background: rgba(20, 37, 78, 0.9);
  padding: 45px 45px 0;
}

.guo_home_div3 .left .guo_home_hd .text .text_div .bt {
  color: #fff;
  font-size: 22px;
  line-height: 34px;
  height: 68px;
  overflow: hidden;
}

.guo_home_div3 .left .guo_home_hd .text .text_div .t {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  height: 96px;
  overflow: hidden;
  margin-top: 16px;
}

.guo_home_div3 .left .guo_home_hd .text .text_div .dz {
  margin-top: 30px;
  float: right;
  background: url(../images/ghome_hd_iocn.png) no-repeat left 6px;
  line-height: 24px;
  color: #fff;
  padding-left: 20px;
}

.guo_home_div3 .left .guo_home_hd .text .text_div .n {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 70px;
  margin-left: -53px;
  width: 107px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
}

.guo_home_div3 .left .guo_home_hd .text .text_div .n a {
  display: block;
  height: 100%;
  color: #fff;
  background-color: #dc1721;
}

.guo_home_div3 .left .guo_home_hd .slick-dots {
  text-align: left;
  padding-left: 500px;
  bottom: 35px;
}

.guo_home_div3 .left .guo_home_hd .slick-dots li {
  float: none;
  width: auto;
  margin: 0 1px;
  padding-left: 0;
}

.guo_home_div3 .left .guo_home_hd .slick-dots li button {
  width: 41px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
}

.guo_home_div3 .left .guo_home_hd .slick-dots li:nth-child {
  float: none;
}

.guo_home_div3 .left .guo_home_hd .slick-dots li.slick-active button {
  background: rgba(255, 255, 255, 0.6);
}

.guo_home_div3 .left ul {
  margin-top: 13px;
}

.guo_home_div3 .left ul li {
  line-height: 24px;
  float: left;
  background: url(../images/ghome_hd_iocn2.png) no-repeat left 10px;
  padding-left: 15px;
  width: 380px;
}

.guo_home_div3 .left ul li:nth-child(2n) {
  float: right;
}

.guo_home_div3 .left ul li span {
  color: #757575;
  font-size: 12px;
  display: inline-block;
  padding-top: 1px;
}

.guo_home_div3 .left ul li a {
  margin-left: 5px;
  display: block;
  float: left;
  max-width: 80%;
  color: #666666;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_home_div3 .left ul li:hover {
  background: url(../images/ghome_hd_iocn3.png) no-repeat left 10px;
}

.guo_home_div3 .left ul li:hover a {
  color: #05689a;
}

.guo_home_div3 .right {
  width: 386px;
}

.guo_home_div3 .right .home_con {
  position: relative;
  border-bottom: 1px solid #d4d4d4;
}

.guo_home_div3 .right .home_con .home_zx span {
  cursor: pointer;
  margin-right: 30px;
  display: block;
  float: left;
  color: #292929;
  font-size: 24px;
  padding-bottom: 14px;
  position: relative;
  bottom: -1px;
}

.guo_home_div3 .right .home_con .home_zx span.cur {
  border-bottom: #dd1721 solid 4px;
}

.guo_home_div3 .right .home_con .more {
  position: absolute;
  right: 0;
  top: 10px;
  text-transform: uppercase;
  color: #888888;
  font-size: 12px;
}

.guo_home_div3 .right .home_con .more:hover {
  color: #e00b1d;
}

.guo_home_div3 .right .home_hd_con {
  margin-top: 20px;
}

.guo_home_div3 .right .home_hd_con .home_hd_text {
  display: none;
}

.guo_home_div3 .right .home_hd_con .home_hd_text:first-child {
  display: block;
}

.guo_home_div3 .right .home_hd_con .home_hd_text .hd_div li {
  margin-bottom: 8px;
  float: left;
  width: 100%;
}

.guo_home_div3 .right .home_hd_con .home_hd_text .hd_div li .img {
  display: block;
  float: left;
  width: 155px;
  height: 92px;
  position: relative;
}

.guo_home_div3 .right .home_hd_con .home_hd_text .hd_div li .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_home_div3 .right .home_hd_con .home_hd_text .hd_div li .t {
  float: right;
  width: 231px;
  padding: 0 7px 0 14px;
  color: #666;
  font-size: 14px;
  line-height: 24px;
}

.guo_home_div3 .right .home_hd_con .home_hd_text .hd_div2 {
  margin-top: 3px;
}

.guo_home_div3 .right .home_hd_con .home_hd_text .hd_div2 li {
  width: 100%;
  float: left;
  line-height: 26px;
  background: url(../images/ghome_hd_iocn2.png) no-repeat left 10px;
  padding-left: 14px;
}

.guo_home_div3 .right .home_hd_con .home_hd_text .hd_div2 li a {
  display: block;
  max-width: 80%;
  float: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #666666;
}

.guo_home_div3 .right .home_hd_con .home_hd_text .hd_div2 li span {
  display: inline-block;
  float: right;
  color: #757575;
  font-size: 12px;
}

.guo_home_div3 .right .home_hd_con .home_hd_text .hd_div2 li:hover {
  background: url(../images/ghome_hd_iocn3.png) no-repeat left 10px;
}

.guo_home_div3 .right .home_hd_con .home_hd_text .hd_div2 li:hover a {
  color: #05689a;
}

.guo_home_div4 {
  background: url(../images/ghome_bg.jpg) top center no-repeat;
  padding: 30px 0 40px;
  background-size: cover;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/ghome_bg.jpg', sizingMethod='scale');
}

.guo_home_div4 .title {
  text-align: center;
}

.guo_home_div4 .title p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_home_div4 .title h3 {
  margin-top: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: normal;
  position: relative;
}

.guo_home_div4 .tables {
  text-align: center;
  margin-top: 30px;
}

.guo_home_div4 .tables span {
  display: inline-block;
  color: #fefefe;
  font-size: 16px;
  line-height: 38px;
  padding: 0 20px;
  border-radius: 3px;
  cursor: pointer;
}

.guo_home_div4 .tables span:hover,
.guo_home_div4 .tables span.cur {
  background: #dd1721;
  color: #fff;
}

.guo_home_div4 .ul_list {
  /*margin-top: 30px;*/
}

.guo_home_div4 .ul_list ul {
  margin-left: -30px;
}

.guo_home_div4 .ul_list ul li {
  float: left;
  background: #fcfcfc;
  width: 380px;
  margin-left: 30px;
  margin-top: 30px;
}

.guo_home_div4 .ul_list ul li .img {
  display: block;
  line-height: 0;
  width: 100%;
  height: 255px;
  position: relative;
  overflow: hidden;
}

.guo_home_div4 .ul_list ul li .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 570px;
  height: 540px;
}

.guo_home_div4 .ul_list ul li .text {
  padding: 15px;
}

.guo_home_div4 .ul_list ul li .text h3 {
  color: #333333;
  font-size: 15px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_home_div4 .ul_list ul li .text P {
  margin-top: 5px;
  color: #858585;
  font-size: 12px;
  line-height: 18px;
  height: 36px;
  overflow: hidden;
}

.guo_home_div4 .ul_list ul li:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.guo_home_div5 {
  background: url(../images/ghome_bg2.jpg) no-repeat center top / cover;
  padding: 30px 0 38px;
}

.guo_home_div5 .home_con .guo_home_tit {
  float: left;
  padding-top: 5px;
}

.guo_home_div5 .home_con .table {
  float: right;
  display: table;
}

.guo_home_div5 .home_con .table a {
  display: block;
  float: left;
  background: #fff;
  min-width: 108px;
  line-height: 44px;
  padding: 0 15px;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
  text-align: center;
}

.guo_home_div5 .home_con .table a:hover,
.guo_home_div5 .home_con .table a.cur {
  background: #cd0000;
  color: #fff;
}

.guo_home_div5 .box {
  margin-top: 20px;
  background: #fff;
}

.guo_home_div5 .box .left {
  float: left;
  min-height: 396px;
  width: 370px;
  background: #24314c;
  padding: 35px;
}

.guo_home_div5 .box .left h3 {
  color: #fff;
  font-size: 18px;
}

.guo_home_div5 .box .left .t {
  margin-bottom: 28px;
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
}

.guo_home_div5 .box .left .t p {
  margin-top: 25px;
}

.guo_home_div5 .box .left a {
  display: block;
  width: 112px;
  height: 36px;
  line-height: 36px;
  background: #cf0000;
  color: #ffffff;
  text-align: center;
}

.guo_home_div5 .box .right {
  float: right;
  width: 830px;
  padding: 35px 40px 20px;
}

.guo_home_div5 .box .right ol {
  margin-left: -27px;
}

.guo_home_div5 .box .right ol li {
  float: left;
  width: 232px;
  margin-left: 27px;
}

.guo_home_div5 .box .right ol li .img {
  line-height: 0;
  overflow: hidden;
}

.guo_home_div5 .box .right ol li .text {
  padding-top: 20px;
}

.guo_home_div5 .box .right ol li .text h3 {
  color: #333333;
  font-size: 16px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_home_div5 .box .right ol li .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 72px;
  overflow: hidden;
}

.guo_home_div5 .box .right ol li .dz {
  margin-top: 20px;
  color: #3e90bb;
  font-size: 14px;
  background: url(../images/gicon16.png) no-repeat left center;
  line-height: 24px;
  padding-left: 23px;
}

.guo_home_div6 {
  background: url(../images/ghome_bg3.jpg) no-repeat center top / cover;
  padding-top: 50px;
  padding-bottom: 40px;
  position: relative;
}

.guo_home_div6 .xian {
  position: absolute;
  left: 0;
  top: 127px;
  width: 100%;
  background: #fff;
  height: 2px;
  opacity: 0.2;
}

.guo_home_div6 .tit {
  color: #ffffff;
  font-size: 30px;
  text-align: center;
}

.guo_home_div6 .tit span {
  display: inline-block;
  position: relative;
}

.guo_home_div6 .tit span:before {
  content: "";
  position: absolute;
  top: -17px;
  right: -14px;
  background: url(../images/gicon17.png) no-repeat center center;
  width: 126px;
  height: 42px;
}

.guo_home_div6 .guo_home_fuwu {
  position: relative;
  z-index: 2;
  margin-top: 26px;
}

.guo_home_div6 .guo_home_fuwu ol {
  margin-left: -10px;
}

.guo_home_div6 .guo_home_fuwu ol li {
  float: left;
  width: 232px;
  margin-left: 10px;
}

.guo_home_div6 .guo_home_fuwu ol li .icon {
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/gicon18.png) no-repeat center center / cover;
  margin: 0 auto;
}

.guo_home_div6 .guo_home_fuwu ol li .text {
  margin-top: 28px;
  background: #fff;
  text-align: center;
  padding: 25px 20px;
}

.guo_home_div6 .guo_home_fuwu ol li .text .num {
  color: #122246;
  font-size: 48px;
  font-family: "黑体";
}

.guo_home_div6 .guo_home_fuwu ol li .text i {
  display: block;
  width: 22px;
  height: 2px;
  background: #666666;
  margin: 8px auto 15px;
}

.guo_home_div6 .guo_home_fuwu ol li .text .name {
  color: #333333;
  font-size: 16px;
}

.guo_home_div6 .guo_home_fuwu ol li .text p {
  margin-top: 20px;
  text-align: left;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 168px;
}

.guo_home_div6 .guo_home_fuwu ol li .text .img {
  display: block;
  width: 33px;
  height: 38px;
  margin: 20px auto 0;
}

.guo_home_div6 .guo_home_fuwu ol li .text span {
  display: block;
  margin-top: 5px;
  color: #cccccc;
  font-size: 12px;
}

.guo_home_div6 .guo_home_fuwu ol li:hover .icon,
.guo_home_div6 .guo_home_fuwu ol li.cur .icon {
  background: url(../images/gicon19.png) no-repeat center center;
}

.guo_home_div6 .guo_home_fuwu ol li:hover .text,
.guo_home_div6 .guo_home_fuwu ol li.cur .text {
  background: #cc0000;
}

.guo_home_div6 .guo_home_fuwu ol li:hover .text .num,
.guo_home_div6 .guo_home_fuwu ol li.cur .text .num,
.guo_home_div6 .guo_home_fuwu ol li:hover .text .name,
.guo_home_div6 .guo_home_fuwu ol li.cur .text .name,
.guo_home_div6 .guo_home_fuwu ol li:hover .text p,
.guo_home_div6 .guo_home_fuwu ol li.cur .text p,
.guo_home_div6 .guo_home_fuwu ol li:hover .text span,
.guo_home_div6 .guo_home_fuwu ol li.cur .text span {
  color: #fff;
}

.guo_home_div6 .guo_home_fuwu ol li:hover .text i,
.guo_home_div6 .guo_home_fuwu ol li.cur .text i {
  background: #fff;
}

.guo_home_div6 .guo_home_fuwu ol li:hover .text .img,
.guo_home_div6 .guo_home_fuwu ol li.cur .text .img,
.guo_home_div6 .guo_home_fuwu ol li:hover .text span,
.guo_home_div6 .guo_home_fuwu ol li.cur .text span {
  opacity: 0.5;
}

.guo_home_div7 {
  padding: 30px 0 0 0;
}

.guo_home_div7 .left {
  width: 790px;
}

.guo_home_div7 .left .home_con {
  position: relative;
}

.guo_home_div7 .left .home_con .more {
  position: absolute;
  right: 0;
  top: 10px;
  text-transform: uppercase;
  color: #888888;
  font-size: 12px;
}

.guo_home_div7 .left .home_con .more:hover {
  color: #e00b1d;
}

.guo_home_div7 .left dl {
  margin-top: 25px;
  margin-bottom: 25px;
}

.guo_home_div7 .left dl dt {
  width: 328px;
  height: 204px;
  position: relative;
}

.guo_home_div7 .left dl dt .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.guo_home_div7 .left dl dt .text span {
  margin: 67px auto 0;
  display: block;
  width: 47px;
  height: 47px;
}

.guo_home_div7 .left dl dt .text .t {
  margin-top: 12px;
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.guo_home_div7 .left dl dd {
  width: 453px;
}

.guo_home_div7 .left dl dd ul li {
  margin-bottom: 8px;
  width: 100%;
  height: 98px;
  border: 1px solid #e3e3e3;
  border-left: none;
}

.guo_home_div7 .left dl dd ul li .img {
  position: relative;
  top: -1px;
  float: left;
  width: 141px;
  height: 98px;
}

.guo_home_div7 .left dl dd ul li .img span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.guo_home_div7 .left dl dd ul li .img span img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 36px;
}

.guo_home_div7 .left dl dd ul li .text {
  float: right;
  width: 311px;
  padding: 15px 10px 0 22px;
}

.guo_home_div7 .left dl dd ul li .text .bt {
  display: block;
  color: #444444;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_home_div7 .left dl dd ul li .text .t {
  color: #777777;
  font-size: 13px;
  line-height: 20px;
  margin-top: 5px;
  height: 40px;
  overflow: hidden;
}

.guo_home_div7 .left dl dd ul li:hover .text .bt {
  color: #05689a;
}

.guo_home_div7 .left .home_case {
  margin-top: 25px;
}

.guo_home_div7 .left .home_case .div {
  width: 382px;
}

.guo_home_div7 .left .home_case .div .top .img {
  display: block;
  float: left;
  width: 141px;
  height: 94px;
  position: relative;
}

.guo_home_div7 .left .home_case .div .top .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_home_div7 .left .home_case .div .top .text {
  width: 241px;
  float: right;
  padding: 12px 20px 0;
}

.guo_home_div7 .left .home_case .div .top .text .bt {
  color: #333333;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}

.guo_home_div7 .left .home_case .div .top .text .t {
  margin-top: 8px;
  color: #808080;
  font-size: 13px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}

.guo_home_div7 .left .home_case .div .top:hover .text .bt {
  color: #05689a;
}

.guo_home_div7 .left .home_case .div ul {
  margin-top: 20px;
}

.guo_home_div7 .left .home_case .div ul li {
  padding-right: 20px;
  float: left;
  width: 100%;
  line-height: 26px;
}

.guo_home_div7 .left .home_case .div ul li a {
  display: block;
  float: left;
  max-width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #757575;
}

.guo_home_div7 .left .home_case .div ul li span {
  display: inline-block;
  float: right;
  color: #757575;
  font-size: 12px;
}

.guo_home_div7 .left .home_case .div ul li:hover a {
  color: #05689a;
}

.guo_home_div7 .right {
  width: 380px;
}

.guo_home_div7 .right .home_con {
  position: relative;
}

.guo_home_div7 .right .home_con .more {
  position: absolute;
  right: 0;
  top: 10px;
  text-transform: uppercase;
  color: #888888;
  font-size: 12px;
}

.guo_home_div7 .right .home_con .more:hover {
  color: #e00b1d;
}

.guo_home_div7 .right .axrd_guo {
  margin-top: 25px;
}

.guo_home_div7 .right ul {
  margin-top: 25px;
}

.guo_home_div7 .right ul li button {
  border-radius: 100%;
}

/*
.guo_home_div7 .right ul li {
  margin-bottom: 12px;
  float: left;
  width: 100%;
  height: 111px;
  border: 1px solid #e3e3e3;
  padding: 14px 25px 14px 15px;
  display:none;
}

.guo_home_div7 .right ul li .img {
  float: left;
  width: 122px;
  height: 81px;
  position: relative;
}

.guo_home_div7 .right ul li .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_home_div7 .right ul li .text {
  float: right;
  width: 216px;
  padding-left: 20px;
}

.guo_home_div7 .right ul li .text .bt {
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_home_div7 .right ul li .text .t {
  margin-top: 5px;
  color: #525252;
  font-size: 13px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}

.guo_home_div7 .right ul li:hover .text .bt {
  color: #05689a;
}*/

.nybanner img {
  width: 100%;
  /*float: left;*/
  vertical-align: top;
}

.guo_ny_title h3 {
  float: left;
  color: #333333;
  font-size: 30px;
}

.guo_ny_title h3 span {
  font-weight: normal;
  font-size: 24px;
}

.guo_ny_title p {
  float: left;
  color: #666666;
  font-size: 16px;
  margin-left: 25px;
  margin-top: 15px;
}

.guo_adly_box {
  background: url(../images/adly_bg.jpg) no-repeat center 20px #ffffff;
  padding: 30px 0;
}

.guo_adly_box ol {
  margin-top: 25px;
  margin-left: -10px;
}

.guo_adly_box ol li {
  float: left;
  width: 232px;
  text-align: center;
  margin-left: 10px;
  margin-bottom: 20px;
  position: relative;
}

.guo_adly_box ol li .bt {
  background: url(../images/adly_icon1.png) no-repeat center center;
  width: 114px;
  height: 33px;
  margin: 0 auto;
  color: #fff;
  line-height: 33px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: -8px;
  margin-left: -57px;
  overflow: hidden;
  padding: 0 10px;
}

.guo_adly_box ol li .text {
  background: #1c356b;
  padding: 42px 15px 0;
}

.guo_adly_box ol li .text h3 {
  color: #ffffff;
  font-size: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_adly_box ol li .text .t {
  margin-top: 12px;
  border-top: 1px solid #3b4f79;
  border-bottom: 1px solid #3b4f79;
  padding-top: 12px;
}

.guo_adly_box ol li .text .t p {
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
}

.guo_adly_box ol li .text .t a {
  display: block;
  width: 90px;
  line-height: 24px;
  background: #152a56;
  color: #fff;
  font-size: 12px;
  margin: 10px auto 0;
}

.guo_adly_box ol li .text .bottom {
  padding: 12px 0;
}

.guo_adly_box ol li .text .bottom a {
  display: inline-block;
  font-size: 12px;
  color: #8693b0;
  padding-left: 14px;
  margin: 0 10px;
}

.guo_adly_box ol li .text .bottom .a1 {
  background: url(../images/adly_icon2.png) no-repeat left center;
}

.guo_adly_box ol li .text .bottom .a2 {
  background: url(../images/adly_icon3.png) no-repeat left center;
}

.guo_adly_box ol li:hover .text,
.guo_adly_box ol li.cur .text {
  background: url(../images/adly_icon4.jpg) no-repeat center center / cover;
  background-size: 100% 100%;
}

.guo_adly_box ol li:hover .text .t a,
.guo_adly_box ol li.cur .text .t a {
  background: #cc0000;
}

.guo_adly_box .bottom_btn {
  margin-top: 10px;
  text-align: center;
}

.guo_adly_box .bottom_btn a {
  width: 118px;
  line-height: 42px;
  background: #1c356b;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  margin: 0 8px;
}

.guo_adly_box .bottom_btn a i {
  display: inline-block;
  margin-right: 12px;
  position: relative;
}

.guo_adly_box .bottom_btn a .i1 {
  top: 5px;
  width: 20px;
  height: 20px;
  background: url(../images/adly_icon5.png) no-repeat center center;
}

.guo_adly_box .bottom_btn a .i2 {
  top: 4px;
  width: 17px;
  height: 15px;
  background: url(../images/adly_icon6.png) no-repeat center center;
}

.guo_adly_box .bottom_btn a:first-child {
  background: #cc0000;
}

.guo_adly_box2 {
  background: url(../images/adly_bg2.jpg) no-repeat center top / cover;
  padding: 45px 0;
}

.guo_adly_box2 .left {
  float: left;
  width: 419px;
}

.guo_adly_box2 .left .bt .f {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_adly_box2 .left .bt h3 {
  margin-top: 10px;
  font-size: 30px;
  color: #ffffff;
}

.guo_adly_box2 .left .bt i {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 28px 0;
}

.guo_adly_box2 .left .bt p {
  color: #ffffff;
  font-size: 16px;
}

.guo_adly_box2 .left .img {
  margin-top: 50px;
  line-height: 0;
}

.guo_adly_box2 .right {
  float: right;
  width: 745px;
  background: url(../images/adly_icon7.jpg) no-repeat center center / cover;
  background-size: 100% 100%;
  height: 456px;
}

.guo_adly_box2 .right ol li {
  float: left;
  width: 50%;
  padding: 50px 30px;
}

.guo_adly_box2 .right ol li .b {
  float: left;
  width: 126px;
  height: 126px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-top: 20px;
}

.guo_adly_box2 .right ol li .b .num {
  color: #0f1f41;
  font-size: 50px;
  font-family: arial;
}

.guo_adly_box2 .right ol li .b p {
  color: #0f1f41;
  font-size: 14px;
}

.guo_adly_box2 .right ol li .t {
  padding-top: 15px;
  float: right;
  width: 168px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}

.guo_adly_box3 {
  background: url(../images/adly_bg3.jpg) no-repeat center top / cover;
  padding: 30px 0 40px;
}

.guo_adly_box3 .left,
.guo_adly_box3 .right {
  width: 550px;
}

.guo_adly_box3 .left .bt,
.guo_adly_box3 .right .bt {
  line-height: 42px;
}

.guo_adly_box3 .left .bt h3,
.guo_adly_box3 .right .bt h3 {
  float: left;
  color: #333333;
  font-size: 24px;
}

.guo_adly_box3 .left .bt h3 span,
.guo_adly_box3 .right .bt h3 span {
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
}

.guo_adly_box3 .left .bt a,
.guo_adly_box3 .right .bt a {
  float: right;
  border: 1px solid #d9dcdf;
  display: inline-block;
  padding: 0 25px;
  line-height: 42px;
  color: #999999;
}

.guo_adly_box3 .left .video {
  margin-top: 20px;
  background: #0f1f41;
}

.guo_adly_box3 .left .video .date {
  float: left;
  width: 112px;
  color: #fff;
  padding: 40px 20px 0;
}

.guo_adly_box3 .left .video .date p {
  margin-top: 10px;
  font-size: 15px;
  font-family: arial;
}

.guo_adly_box3 .left .video .date p span {
  font-size: 36px;
}

.guo_adly_box3 .left .video .shipin {
  float: right;
  width: 438px;
  height: 175px;
  line-height: 0;
  position: relative;
}

.guo_adly_box3 .left .video .shipin .btn img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 320px;
}

.guo_adly_box3 .left .text {
  padding-top: 25px;
}

.guo_adly_box3 .left .text .bt {
  color: #0f1f41;
  font-size: 20px;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_adly_box3 .left .text p {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
  height: 90px;
  overflow: hidden;
}

.guo_adly_box3 .left .text .more {
  margin-top: 20px;
  color: #0f1f41;
  font-size: 14px;
  display: inline-block;
  background: url(../images/jt.jpg) no-repeat right center;
  padding-right: 16px;
  line-height: 24px;
}

.guo_adly_box3 .right .img_box {
  margin-top: 20px;
  background: #f9fafa;
  height: 175px;
  padding: 26px;
}

.guo_adly_box3 .right .img_box .img {
  width: 120px;
  height: 120px;
  line-height: 0;
  float: left;
}

.guo_adly_box3 .right .img_box .text {
  width: 70%;
  float: right;
  padding-top: 20px;
}

.guo_adly_box3 .right .img_box .text h3 {
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_adly_box3 .right .img_box .text p {
  margin-top: 12px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}

.guo_adly_box3 .right ol {
  margin-top: 20px;
  border-top: 1px dotted #d9d9d9;
}

.guo_adly_box3 .right ol li {
  float: left;
  width: 100%;
  line-height: 58px;
  border-bottom: 1px dotted #d9d9d9;
  background: url(../images/adly_icon8.jpg) no-repeat left center;
  padding-left: 20px;
}

.guo_adly_box3 .right ol li p {
  float: left;
  max-width: 70%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #2e3c4a;
  font-size: 16px;
}

.guo_adly_box3 .right ol li span {
  float: right;
  color: #999999;
  font-size: 12px;
}

.guo_adly_box4 {
  background: url(../images/adly_bg4.png) no-repeat center top;
  position: relative;
  top: -15px;
  padding: 50px 0 36px;
}

.guo_adly_box4 .left {
  float: left;
  width: 374px;
}

.guo_adly_box4 .left .bt {
  color: #ffffff;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_adly_box4 .left p {
  margin-top: 15px;
  color: #b7bcc6;
  font-size: 14px;
  line-height: 30px;
  height: 120px;
}

.guo_adly_box4 .left a {
  margin-top: 28px;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  background: url(../images/adly_icon9.png) no-repeat right center;
  line-height: 24px;
  padding-right: 18px;
}

.guo_adly_box4 .left .img {
  line-height: 0;
  margin-top: 34px;
}

.guo_adly_box4 .right {
  float: right;
  width: 770px;
}

.guo_adly_box4 .right .tit {
  margin-top: 2px;
}

.guo_adly_box4 .right .tit span {
  float: left;
  line-height: 50px;
  color: #333333;
  padding: 0 20px;
  cursor: pointer;
  font-size: 16px;
}

.guo_adly_box4 .right .tit span.cur,
.guo_adly_box4 .right .tit span:hover {
  color: #fff;
  background: #cc0000;
}

.guo_adly_box4 .right .box_t {
  margin-top: 32px;
}

.guo_adly_box4 .right .box_t .t {
  float: left;
  width: 490px;
}

.guo_adly_box4 .right .box_t .t p {
  color: #b7b7b7;
  font-size: 15px;
  line-height: 36px;
  height: 180px;
  overflow: hidden;
}

.guo_adly_box4 .right .box_t .t a {
  margin-top: 28px;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  background: url(../images/adly_icon9.png) no-repeat right center;
  line-height: 24px;
  padding-right: 18px;
}

.guo_adly_box4 .right .box_t .img {
  float: right;
  width: 250px;
  height: 290px;
}

.guo_adly_box5 {
  padding-top: 25px;
  padding-bottom: 50px;
}

.guo_adly_box5 .top .bt {
  margin-top: -11px;
  float: left;
}

.guo_adly_box5 .top .bt p {
  color: #999999;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_adly_box5 .top .bt .tit h3 {
  float: left;
  color: #333333;
  font-size: 30px;
}

.guo_adly_box5 .top .bt .tit span {
  padding-top: 10px;
  float: left;
  margin-left: 15px;
  color: #666666;
  font-size: 16px;
}

.guo_adly_box5 .top .tables {
  float: right;
  line-height: 44px;
  background: url(../images/adly_bg5.jpg) no-repeat right top;
  max-width: 550px;
  height: 50px;
  font-size: 14px;
  margin-right: 10px;
}

.guo_adly_box5 .top .tables a {
  display: block;
  float: left;
  color: #666666;
  font-weight: bold;
  padding: 0 14px !important;
}

.guo_adly_box5 .top .tables a:hover,
.guo_adly_box5 .top .tables a.cur {
  background: #cc0000;
  color: #fff;
}

.guo_adly_box5 .top .more {
  float: right;
  display: block;
  width: 106px;
  line-height: 44px;
  border: 1px solid #e5e5e5;
  text-align: center;
  color: #999999;
}

.guo_adly_box5 .adly_case {
  margin-top: 20px;
  margin-left: -10px;
  margin-right: -10px;
}

.guo_adly_box5 .adly_case .box {
  margin: 0 10px;
  background: #f6f6f6;
}

.guo_adly_box5 .adly_case .box .img {
  width: 286px;
  height: 222px;
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.guo_adly_box5 .adly_case .box .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 286px;
  height: 222px;
}

.guo_adly_box5 .adly_case .box .img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 97.2%;
  height: 96.2%;
  border: 4px solid #cc0000;
  display: none;
}

.guo_adly_box5 .adly_case .box .text {
  padding: 12px 40px;
  text-align: center;
  color: #666666;
  font-size: 16px;
}

.guo_adly_box5 .adly_case .box .text p {
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}

.guo_adly_box5 .adly_case .box:hover {
  background: #cc0000;
}

.guo_adly_box5 .adly_case .box:hover .img:before {
  display: block;
}

.guo_adly_box5 .adly_case .box:hover .text {
  color: #fff;
}

.guo_adly_box5 .adly_case .slick-prev,
.guo_adly_box5 .adly_case .slick-next {
  width: 60px;
  height: 60px;
  border: 1px solid #f7f7f7;
  margin-top: -30px;
  border-radius: 50px;
}

.guo_adly_box5 .adly_case .slick-prev {
  background: url(../images/left1.png) no-repeat center center #ffffff;
  left: -100px;
}

.guo_adly_box5 .adly_case .slick-next {
  background: url(../images/right1.png) no-repeat center center #ffffff;
  right: -100px;
}

.guo_adly_box6 {
  background: url(../images/adly_bg6.jpg) no-repeat center top / cover;
  padding-top: 55px;
  padding-bottom: 40px;
}

.guo_adly_box6 .top .bt {
  margin-top: -11px;
  float: left;
}

.guo_adly_box6 .top .bt p {
  color: #999999;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_adly_box6 .top .bt .tit h3 {
  float: left;
  color: #333333;
  font-size: 30px;
}

.guo_adly_box6 .top .bt .tit span {
  padding-top: 10px;
  float: left;
  margin-left: 15px;
  color: #666666;
  font-size: 16px;
}

.guo_adly_box6 .top .tables {
  float: right;
  line-height: 44px;
  background: url(../images/adly_bg6_1.png) no-repeat right top;
  height: 50px;
  font-size: 14px;
  padding-right: 10px;
}

.guo_adly_box6 .top .tables a {
  display: block;
  float: left;
  color: #666666;
  font-weight: bold;
  padding: 0 25px;
}

.guo_adly_box6 .top .tables a:hover,
.guo_adly_box6 .top .tables a.cur {
  background: #cc0000;
  color: #fff;
}

.guo_adly_box6 .tits {
  margin-top: 25px;
}

.guo_adly_box6 .tits span {
  display: block;
  float: left;
  color: #333333;
  font-size: 14px;
  line-height: 32px;
}

.guo_adly_box6 .tits .tables {
  float: left;
  width: 1150px;
}

.guo_adly_box6 .tits .tables a {
  display: block;
  float: left;
  color: #333333;
  font-size: 14px;
  line-height: 32px;
  padding: 0 15px;
}

.guo_adly_box6 .tits .tables a:hover,
.guo_adly_box6 .tits .tables a.cur {
  background: #cc0000;
  color: #fff;
}

.guo_adly_box6 .adly_tuandui {
  margin-top: 26px;
  margin-left: -5px;
  margin-right: -5px;
}

.guo_adly_box6 .adly_tuandui .box {
  background: #ffffff;
  margin: 0 5px;
}

.guo_adly_box6 .adly_tuandui .box .img {
  position: relative;
  text-align: center;
}

.guo_adly_box6 .adly_tuandui .box .img img {
  width: 235px;
  height: 192px;
}

.guo_adly_box6 .adly_tuandui .box .img span {
  color: #ffffff;
  font-size: 14px;
  padding: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(15, 31, 65, 0.9);
}

.guo_adly_box6 .adly_tuandui .box .text {
  padding: 15px 10px;
}

.guo_adly_box6 .adly_tuandui .box .text p {
  text-align: center;
  color: #666666;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_adly_box6 .adly_tuandui .box .text .bott {
  margin-top: 12px;
}

.guo_adly_box6 .adly_tuandui .box .text .bott .f-l {
  margin-top: 2px;
  display: block;
}

.guo_adly_box6 .adly_tuandui .box .text .bott .f-l em {
  display: block;
  background: url(../images/x.png) no-repeat center center / cover;
  width: 11px;
  height: 10px;
  float: left;
  margin-right: 3px;
}

/*
.star {
  display: inline-block;
  width: 74px;
  height: 11px;
  overflow: hidden;
  background: url(../images/star.png) no-repeat 0 -16px;
  vertical-align: text-top;
}

.star i {
  float: left;
  width: 1px;
  height: 11px;
  background: url(../images/star.png) no-repeat 0 -2px;
}

.star3 {
  display: inline-block;
  width: 74px;
  height: 11px;
  overflow: hidden;
  background: url(../images/star3.png) no-repeat 0 -16px;
  vertical-align: text-top;
}

.star3 i {
  float: left;
  width: 1px;
  height: 11px;
  background: url(../images/star3.png) no-repeat 0 -2px;
}
*/
/*顾问等级修改*/
.guo_adly_box6 .adly_tuandui {
  margin-top: 14px;
}

.guo_adly_box6 .adly_tuandui .box {
  margin-top: 12px;
}

.guo_adly_box6 .stars_staff::before {
  content: '';
  display: inline-block;
  width: 85px;
  height: 75px;
  background: url('../images/stars_staff.png') no-repeat;
  position: absolute;
  top: -12px;
  right: -18px;
  z-index: 99;
}

.guo_adly_box6 .adly_tuandui .box .text .bott .f-l {
  margin-top: 0px;
}

.star3 {
  display: inline-block;
  width: 98px;
  height: 16px;
  overflow: hidden;
  background: url(../images/star1015.png) no-repeat 0 -18px;
  vertical-align: text-top;
}

.star3 i {
  float: left;
  width: 1px;
  height: 16px;
  background: url(../images/star1015.png) no-repeat 0 0px;
}

/*顾问等级修改结束*/




.guo_adly_box6 .adly_tuandui .box .text .bott .f-r {
  display: block;
  font-size: 12px;
  color: #666666;
  background: url(../images/x1.png) no-repeat left center;
  padding-left: 18px;
}

.guo_adly_box6 .adly_tuandui .slick-prev,
.guo_adly_box6 .adly_tuandui .slick-next {
  width: 60px;
  height: 60px;
  border: 1px solid #f7f7f7;
  margin-top: -30px;
  border-radius: 50px;
}

.guo_adly_box6 .adly_tuandui .slick-prev {
  background: url(../images/left01.png) no-repeat center center #ffffff;
  left: -100px;
}

.guo_adly_box6 .adly_tuandui .slick-next {
  background: url(../images/right01.png) no-repeat center center #ffffff;
  right: -100px;
}

.guo_adly_box7 {
  background: url(../images/adly_bg7.jpg) no-repeat center top;
  padding: 45px 0 0;
  margin-bottom: -30px;
}

.guo_adly_box7 .top .bt {
  margin-top: -11px;
  float: left;
}

.guo_adly_box7 .top .bt p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_adly_box7 .top .bt .tit h3 {
  float: left;
  color: #fff;
  font-size: 30px;
}

.guo_adly_box7 .top .bt .tit span {
  padding-top: 10px;
  float: left;
  margin-left: 15px;
  color: #fff;
  font-size: 16px;
}

.guo_adly_box7 .box_con {
  position: relative;
}

.guo_adly_box7 .box_con .qh_tab {
  position: absolute;
  top: 0;
  left: 400px;
  width: 100px;
}

.guo_adly_box7 .box_con .qh_tab ul li {
  float: left;
  width: 100%;
  background: #ffffff;
  text-align: center;
  color: #333333;
  font-size: 16px;
  margin-bottom: 15px;
  padding: 25px 10px;
  cursor: pointer;
  line-height: 30px;
  position: relative;
}

.guo_adly_box7 .box_con .qh_tab ul li:before {
  display: none;
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  margin-top: -9.5px;
  width: 10px;
  height: 19px;
  background: url(../images/adly_icon11.png) no-repeat center center / cover;
}

.guo_adly_box7 .box_con .qh_tab ul li:hover,
.guo_adly_box7 .box_con .qh_tab ul li.cur {
  background: #cc0000;
  color: #fff;
}

.guo_adly_box7 .box_con .qh_tab ul li:hover:before,
.guo_adly_box7 .box_con .qh_tab ul li.cur:before {
  display: block;
}

.guo_adly_box7 .qh_box {
  margin-top: 36px;
}

.guo_adly_box7 .qh_box ul>li {
  float: left;
  width: 100%;
  display: none;
}

.guo_adly_box7 .qh_box ul>li:first-child {
  display: block;
}

.guo_adly_box7 .qh_box ul>li .img {
  float: left;
  width: 360px;
  line-height: 0;
}

.guo_adly_box7 .qh_box ul>li .img img {
  width: 360px;
  height: 460px;
}

.guo_adly_box7 .qh_box ul>li .text {
  float: right;
  width: 650px;
}

.guo_adly_box7 .qh_box ul>li .text h3 {
  color: #ffffff;
  font-size: 20px;
}

.guo_adly_box7 .qh_box ul>li .text p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 36px;
  color: #b8bdc7;
  max-height: 144px;
  overflow: hidden;
}

.guo_adly_box7 .qh_box ul>li .text ol {
  border-top: 1px dotted #57637b;
  margin-top: 20px;
  padding-top: 20px;
}

.guo_adly_box7 .qh_box ul>li .text ol li {
  float: left;
  width: 50%;
  font-size: 14px;
  line-height: 36px;
  background: url(../images/adly_icon10.png) no-repeat left center;
  padding-left: 20px;
  padding-right: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_adly_box7 .qh_box ul>li .text ol li a {
  display: block;
  color: #b8bdc7;
}

.guo_adly_box8 {
  background: #f1f5f8;
  padding: 70px 0 40px;
}

.guo_adly_box8 .top .bt {
  margin-top: -11px;
  float: left;
}

.guo_adly_box8 .top .bt p {
  color: #999999;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_adly_box8 .top .bt .tit h3 {
  float: left;
  color: #333333;
  font-size: 30px;
}

.guo_adly_box8 .top .bt .tit span {
  padding-top: 10px;
  float: left;
  margin-left: 15px;
  color: #666666;
  font-size: 16px;
}

.guo_adly_box8 .top .tables {
  float: right;
  line-height: 44px;
  background: url(../images/adly_bg6_1.png) no-repeat right top;
  height: 50px;
  font-size: 14px;
  margin-right: 10px;
  padding-right: 20px;
}

.guo_adly_box8 .top .tables a {
  display: block;
  float: left;
  color: #666666;
  font-weight: bold;
  padding: 0 20px;
}

.guo_adly_box8 .top .tables a:hover,
.guo_adly_box8 .top .tables a.cur {
  background: #cc0000;
  color: #fff;
}

.guo_adly_box8 .top .more {
  float: right;
  display: block;
  width: 106px;
  line-height: 44px;
  border: 1px solid #e5e5e5;
  text-align: center;
  color: #999999;
}

.guo_adly_box8 .adly_news {
  margin-top: 30px;
}

.guo_adly_box8 .adly_news .left {
  float: left;
  width: 400px;
  background: #fff;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.guo_adly_box8 .adly_news .left .bt {
  color: #333333;
  font-size: 20px;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
}

.guo_adly_box8 .adly_news .left i {
  display: block;
  width: 25px;
  height: 2px;
  background: #333333;
  margin: 25px 0;
}

.guo_adly_box8 .adly_news .left p {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  height: 72px;
  overflow: hidden;
}

.guo_adly_box8 .adly_news .left .img {
  margin-top: 23px;
  line-height: 0;
}

.guo_adly_box8 .adly_news .left .img img {
  width: 353px;
  height: 229px;
}

.guo_adly_box8 .adly_news .right {
  float: right;
  width: 760px;
}

.guo_adly_box8 .adly_news .right .top_n .img {
  display: block;
  width: 190px;
  height: 130px;
  line-height: 0;
  float: left;
}

.guo_adly_box8 .adly_news .right .top_n .img img {
  width: 100%;
  height: 100%;
}

.guo_adly_box8 .adly_news .right .top_n .text {
  float: right;
  width: 548px;
}

.guo_adly_box8 .adly_news .right .top_n .text h3 {
  color: #333333;
  font-size: 16px;
  line-height: 24px;
}

.guo_adly_box8 .adly_news .right .top_n .text h3 span {
  color: #999999;
  font-size: 14px;
  font-weight: normal;
  float: right;
}

.guo_adly_box8 .adly_news .right .top_n .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
}

.guo_adly_box8 .adly_news .right .top_n .text .more {
  color: #cccccc;
  font-size: 14px;
  display: inline-block;
  margin-top: 15px;
}

.guo_adly_box8 .adly_news .right ol {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px dotted #c1c4c6;
}

.guo_adly_box8 .adly_news .right ol li {
  float: left;
  width: 50%;
  font-size: 14px;
  line-height: 40px;
  background: url(../images/adly_icon8.jpg) no-repeat left center;
  padding: 0 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_adly_box8 .adly_news .right ol li a {
  display: block;
  color: #333333;
}

.guo_adly_box9 {
  background: url(../images/adly_bg8.jpg) no-repeat center top / cover;
  padding: 38px 0;
}

.guo_adly_box9 .left {
  height: 457px;
  width: 400px;
  float: left;
  background: rgba(19, 35, 68, 0.8);
  padding: 30px 20px;
}

.guo_adly_box9 .left .bt {
  line-height: 42px;
}

.guo_adly_box9 .left .bt h3 {
  float: left;
  color: #fff;
  font-size: 24px;
}

.guo_adly_box9 .left .bt h3 span {
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
}

.guo_adly_box9 .left .img {
  margin-top: 20px;
  line-height: 0;
  overflow: hidden;
}

.guo_adly_box9 .left .img img {
  width: 360px;
  height: 116px;
}

.guo_adly_box9 .left ol {
  margin-top: 20px;
}

.guo_adly_box9 .left ol li {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 38px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  background: url(../images/adly_icon10.png) no-repeat left center;
  padding-left: 15px;
}

.guo_adly_box9 .left ol li a {
  display: block;
  color: #fff;
}

.guo_adly_box9 .right {
  width: 800px;
  background: #f3f4f5;
  float: right;
}

.guo_adly_box9 .right .top_wx {
  float: left;
  width: 50%;
}

.guo_adly_box9 .right .top_wx .text {
  height: 236px;
  padding: 30px 30px;
  float: left;
  width: 100%;
  background: url(../images/adly_img14.jpg) no-repeat right bottom;
}

.guo_adly_box9 .right .top_wx .text span {
  display: block;
  color: #132342;
  font-size: 24px;
  text-transform: uppercase;
}

.guo_adly_box9 .right .top_wx .text h3 {
  color: #132342;
  font-size: 30px;
}

.guo_adly_box9 .right .top_wx .text i {
  display: block;
  width: 30px;
  height: 2px;
  background: #132342;
  margin: 15px 0;
}

.guo_adly_box9 .right .top_wx .text p {
  color: #666666;
  font-size: 16px;
  line-height: 36px;
  height: 72px;
  overflow: hidden;
}

.guo_adly_box9 .right .top_wx ol {
  background: #ebebec;
  float: left;
  width: 100%;
  height: 220px;
  padding: 30px;
}

.guo_adly_box9 .right .top_wx ol li {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 40px;
  color: #333333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  background: url(../images/adly_icon8.jpg) no-repeat left center;
  padding-left: 15px;
}

.guo_adly_box9 .right .top_wx ol li a {
  color: #333333;
  float: left;
}

.guo_adly_box9 .right .top_wx ol li span {
  float: left;
}

.guo_adly_box9 .right .bottom_wx {
  float: right;
  width: 50%;
}

.guo_adly_box9 .right .bottom_wx .img_box_wx {
  float: right;
  width: 100%;
}

.guo_adly_box9 .right .bottom_wx .img_box_wx .box .img img {
  width: 423px;
  height: 235px;
}

.guo_adly_box9 .right .bottom_wx .img_box_wx .slick-dots {
  bottom: auto;
  top: 210px;
}

.guo_adly_box9 .right .bottom_wx .img_box_wx .slick-dots li button {
  width: 28px;
  height: 6px;
  background: #fdf7f7;
}

.guo_adly_box9 .right .bottom_wx .img_box_wx .slick-dots li.slick-active button {
  background: #cc0000;
}

.guo_adly_box9 .right .bottom_wx .qa_t {
  float: right;
  width: 100%;
  padding: 30px 20px;
}

.guo_adly_box9 .right .bottom_wx .qa_t .qa_bt {
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
  background: url(../images/adly_icon12.jpg) no-repeat left center;
  padding-left: 45px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_adly_box9 .right .bottom_wx .qa_t .qa_bt a {
  color: #132342;
}

.guo_adly_box9 .right .bottom_wx .qa_t .qa_text {
  margin-top: 13px;
  color: #666666;
  font-size: 14px;
  line-height: 28px;
}

.guo_adly_box9 .right .bottom_wx .qa_t .qa_text p {
  height: 112px;
  overflow: hidden;
}

.guo_adly_box9 .right .bottom_wx .qa_t .qa_text p .img {
  float: left;
  margin-right: 15px;
}

.guo_adly_box10 {
  background: url(../images/america_icon6.jpg) repeat-x left top;
  padding: 50px 0 25px;
}

.guo_adly_box10 .left {
  float: left;
  width: 295px;
  height: 457px;
  position: relative;
}

.guo_adly_box10 .left .top .bt {
  float: left;
}

.guo_adly_box10 .left .top .bt p {
  color: #333333;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_adly_box10 .left .top .bt .tit h3 {
  float: left;
  color: #333333;
  font-size: 30px;
}

.guo_adly_box10 .left i {
  display: block;
  width: 34px;
  height: 3px;
  background: #000000;
  margin: 20px 0;
}

.guo_adly_box10 .left .t {
  color: #666666;
  font-size: 16px;
  line-height: 36px;
}

.guo_adly_box10 .left .t p {
  margin-top: 20px;
}

.guo_adly_box10 .left .bott {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 24px;
  text-transform: uppercase;
  color: #eaeaea;
}

.guo_adly_box10 .right {
  float: right;
  width: 880px;
}

.guo_adly_box10 .right ol {
  margin-left: -25px;
}

.guo_adly_box10 .right ol li {
  float: left;
  width: 281px;
  height: 216px;
  position: relative;
  margin: 0 0 25px 20px;
}

.guo_adly_box10 .right ol li img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 276px;
  height: 216px;
}

.guo_adly_box10 .right ol li .img {
  line-height: 0;
}

.guo_adly_box10 .right ol li .text {
  z-index: 2;
  position: absolute;
  left: 10px;
  top: -10px;
  width: 50px;
  min-height: 130px;
  background: #132242;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px;
  overflow: hidden;
  max-height: 100%;
  word-break: break-all;
}

.guo_adly_box10 .right ol li .text:hover {
  background: #cc0000;
}

.guo_passport_box {
  background: url(../images/passport_bg1.jpg) no-repeat center bottom;
}

.guo_passport_box2 {
  background: url(../images/passport_bg2.jpg) no-repeat center top;
  padding: 35px 0 40px;
}

.guo_passport_box2 .tit {
  text-align: center;
  color: #fff;
}

.guo_passport_box2 .tit h3 {
  font-size: 30px;
}

.guo_passport_box2 .tit p {
  margin-top: 8px;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_passport_box2 ol {
  margin-top: -10px;
  margin-left: -100px;
}

.guo_passport_box2 ol li {
  float: left;
  margin-top: 50px;
  width: 550px;
  margin-left: 100px;
}

.guo_passport_box2 ol li .bt {
  background: #1c356b;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  float: left;
  width: 160px;
  text-align: center;
  padding: 35px 10px;
}

.guo_passport_box2 ol li .text {
  margin-top: 4px;
  float: right;
  width: 360px;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  height: 112px;
  overflow: hidden;
}

.guo_passport_box3 {
  padding: 35px 0 40px;
}

.guo_passport_box3 .top .bt {
  float: left;
}

.guo_passport_box3 .top .bt p {
  color: #333333;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_passport_box3 .top .bt h3 {
  margin-top: 5px;
  color: #333333;
  font-size: 30px;
}

.guo_passport_box3 .top .text {
  margin-top: -4px;
  float: right;
  width: 840px;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
}

.guo_passport_box3 ol {
  margin-top: 30px;
}

.guo_passport_box3 ol li {
  float: left;
  width: 23.5%;
  background: #f8f9fa;
  margin-right: 2%;
}

.guo_passport_box3 ol li:nth-child(4n) {
  margin-right: 0;
}

.guo_passport_box3 ol li .img {
  line-height: 0;
  overflow: hidden;
}

.guo_passport_box3 ol li .img img {
  max-height: 100%;
  max-width: 100%;
  width: 282px;
  height: 175px;
}

.guo_passport_box3 ol li .text {
  padding: 15px 20px;
}

.guo_passport_box3 ol li .text h3 {
  color: #333333;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_passport_box3 ol li .text p {
  margin-top: 10px;
  color: #666666;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}

.guo_passport_box3 ol li .text span {
  display: inline-block;
  font-size: 12px;
  color: #929292;
  margin-top: 10px;
  background: url(../images/passport_icon1.png) no-repeat right center;
  line-height: 20px;
  padding-right: 15px;
}

.guo_passport_box3 ol li:hover {
  background: #cc0000;
}

.guo_passport_box3 ol li:hover .text h3,
.guo_passport_box3 ol li:hover .text p {
  color: #fff;
}

.guo_passport_box3 ol li:hover .text span {
  color: #f0b3b3;
  background: url(../images/passport_icon2.png) no-repeat right center;
}

.guo_passport_box4 {
  padding: 35px 0 40px;
  background: url(../images/passport_bg3.jpg) no-repeat center top / cover;
}

.guo_passport_box4 .top .bt {
  float: left;
}

.guo_passport_box4 .top .bt p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_passport_box4 .top .bt h3 {
  margin-top: 5px;
  color: #fff;
  font-size: 30px;
}

.guo_passport_box4 .top .text {
  margin-top: -4px;
  float: right;
  width: 840px;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  text-align: right;
}

.guo_passport_box4 .tables {
  margin-top: 30px;
}

.guo_passport_box4 .tables table tr {
  background: #ffffff;
}

.guo_passport_box4 .tables table tr:nth-child(2n-1) {
  background: #efefef;
}

.guo_passport_box4 .tables table tr:first-child {
  background: none;
}

.guo_passport_box4 .tables table tr:first-child td {
  border-top: none;
  color: #fff;
}

.guo_passport_box4 .tables table tr:first-child td p {
  margin-top: 10px;
}

.guo_passport_box4 .tables table tr td {
  width: 16.6666%;
  text-align: center;
  border: 1px dotted #e5e5e5;
  padding: 15px 10px;
}

.guo_passport_box5 .top_hz h3 {
  float: left;
  color: #333333;
  font-size: 30px;
}

.guo_passport_box5 .top_hz h3 span {
  display: inline-block;
  color: #999999;
  font-size: 14px;
  font-weight: normal;
  margin-left: 20px;
}

.guo_passport_box5 .top_hz p {
  margin-top: 15px;
  float: right;
}

.guo_passport_box6 {
  padding-bottom: 60px;
}

.guo_passport_box7 {
  background: url(../images/passport_bg4.jpg) no-repeat center top;
}

.guo_passport_box7 .left {
  float: left;
  width: 764px;
  margin-top: -15px;
  line-height: 0;
  margin-left: -360px;
}

.guo_passport_box7 .left img {
  width: 764px;
  height: 459px;
}

.guo_passport_box7 .right {
  float: right;
  width: 726px;
  padding-top: 40px;
}

.guo_passport_box7 .right .tits {
  border-bottom: 1px solid #444d63;
}

.guo_passport_box7 .right .tits ul {
  float: left;
}

.guo_passport_box7 .right .tits ul li {
  cursor: pointer;
  line-height: 42px;
  float: left;
  color: #333333;
  font-size: 16px;
  background: #fff;
  margin-right: 5px;
  padding: 0 25px;
}

.guo_passport_box7 .right .tits ul li.cur,
.guo_passport_box7 .right .tits ul li:hover {
  background: #cc0000;
  color: #fff;
}

.guo_passport_box7 .right .tits a.more {
  float: right;
  display: block;
  width: 108px;
  line-height: 40px;
  text-align: center;
  color: #999999;
  border: 1px solid #2e3851;
}

.guo_passport_box7 .right .tit_box {
  margin-top: 5px;
}

.guo_passport_box7 .right .tit_box ol li {
  float: left;
  width: 100%;
  padding: 28px 0;
  border-top: 1px dotted #444d63;
}

.guo_passport_box7 .right .tit_box ol li:first-child {
  border-top: none;
}

.guo_passport_box7 .right .tit_box ol li .img {
  width: 110px;
  height: 110px;
  line-height: 0;
  float: left;
}

.guo_passport_box7 .right .tit_box ol li .text {
  float: right;
  width: 590px;
}

.guo_passport_box7 .right .tit_box ol li .text h3 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
}

.guo_passport_box7 .right .tit_box ol li .text p {
  margin-top: 10px;
  line-height: 24px;
  color: #b9bdc5;
  height: 48px;
  overflow: hidden;
}

.guo_passport_box7 .right .tit_box ol li .text .bottom {
  margin-top: 10px;
}

.guo_passport_box7 .right .tit_box ol li .text .bottom span {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
}

.guo_passport_box7 .right .tit_box ol li .text .bottom .f-l {
  color: #fff;
  background: url(../images/passport_icon2.png) no-repeat right center;
  padding-right: 15px;
}

.guo_passport_box7 .right .tit_box ol li .text .bottom .f-r {
  color: #999999;
}

.guo_passport_box8 {
  background: #f1f5f8 url(../images/passport_bg5.jpg) no-repeat center bottom;
  padding-bottom: 50px;
}

.guo_passport_box8 .tit {
  color: #111e39;
}

.guo_passport_box8 .tit span:before {
  background: url(../images/gicon20.png) no-repeat center center;
}

.guo_america_box .right {
  background-image: url(../images/america_bg1.jpg);
}

.guo_america_box .right ol li {
  float: left;
  width: 33.33333333%;
  padding: 50px 30px;
}

.guo_america_box .right ol li .b {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  float: none;
}

.guo_america_box .right ol li .t {
  float: none;
  padding-top: 25px;
  width: 100%;
}

.guo_america_box2 {
  background: url(../images/america_bg2.jpg) no-repeat center top / cover;
  padding: 45px 0;
}

.guo_america_box2 .top .bt {
  float: left;
}

.guo_america_box2 .top .bt p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_america_box2 .top .bt .tit h3 {
  float: left;
  color: #fff;
  font-size: 30px;
}

.guo_america_box2 .top .bt .tit span {
  padding-top: 10px;
  float: left;
  margin-left: 15px;
  color: #fff;
  font-size: 16px;
}

.guo_america_box2 .top .tables {
  margin-top: 10px;
  float: right;
  line-height: 44px;
  font-size: 14px;
  margin-right: 0;
}

.guo_america_box2 .top .tables a {
  display: block;
  float: left;
  color: #666666;
  background: #ffffff;
  margin-left: 3px;
  font-weight: bold;
  padding: 0 25px;
}

.guo_america_box2 .top .tables a:hover,
.guo_america_box2 .top .tables a.cur {
  background: #cc0000;
  color: #fff;
}

.guo_america_box2 .box {
  margin-top: 30px;
  background: #ffffff;
}

.guo_america_box2 .box .left {
  width: 610px;
}

.guo_america_box2 .box .left ul li {
  margin-top: 30px;
  float: left;
  width: 100%;
}

.guo_america_box2 .box .left ul li .data {
  margin-left: -11px;
  display: block;
  float: left;
  width: 38px;
  height: 38px;
  background: #cc0000;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  line-height: 38px;
}

.guo_america_box2 .box .left ul li .text {
  float: right;
  width: 565px;
}

.guo_america_box2 .box .left ul li .text .bt {
  color: #333333;
  font-size: 16px;
  margin-bottom: 10px;
}

.guo_america_box2 .box .left ul li .text .t {
  color: #666666;
  line-height: 26px;
}

.guo_america_box2 .box .right {
  line-height: 0;
  width: 530px;
  height: 380px;
}

.guo_america_box2 .box .right img {
  width: 530px;
  height: 380px;
}

.guo_america_box3 {
  background: #f1f5f8;
  padding: 45px 0;
}

.guo_america_box3 .top .bt {
  float: left;
}

.guo_america_box3 .top .bt p {
  color: #999999;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_america_box3 .top .bt .tit h3 {
  float: left;
  color: #333333;
  font-size: 30px;
}

.guo_america_box3 .top .bt .tit span {
  padding-top: 10px;
  float: left;
  margin-left: 15px;
  color: #666666;
  font-size: 16px;
}

.guo_america_box3 ol {
  margin-top: 30px;
}

.guo_america_box3 ol li {
  float: left;
  width: 20%;
  padding: 30px 10px;
  min-height: 260px;
  background: #f8fafc;
  text-align: center;
}

.guo_america_box3 ol li:nth-child(2n) {
  background: #fcfdfe;
}

.guo_america_box3 ol li .icon {
  height: 52px;
  line-height: 0;
}

.guo_america_box3 ol li .text {
  margin-top: 15px;
}

.guo_america_box3 ol li .text h3 {
  color: #1c356b;
  font-size: 16px;
}

.guo_america_box3 ol li .text p {
  margin-top: 10px;
  line-height: 24px;
}

.guo_america_box4 {
  background: #122244;
  padding-top: 40px;
}

.guo_america_box4 .top .bt {
  margin-top: 0;
  float: left;
}

.guo_america_box4 .top .bt p {
  color: #fff;
}

.guo_america_box4 .top .bt .tit h3 {
  color: #fff;
}

.guo_america_box4 .top .bt .tit span {
  color: #fff;
}

.guo_america_box4 .top .tables {
  margin-top: 10px;
  background: none;
  height: auto;
  width: auto;
  line-height: 44px;
}

.guo_america_box4 .top .tables a {
  color: #666666;
  background: #ffffff;
  margin-left: 3px;
  font-weight: bold;
  padding: 0 25px;
}

.guo_america_box4 .top .tables a:hover,
.guo_america_box4 .top .tables a.cur {
  background: #cc0000;
  color: #fff;
}

.guo_america_box4 .top .more {
  color: #fff;
  margin-top: 10px;
  line-height: 42px;
}

.guo_america_box4 .adly_case .slick-prev,
.guo_america_box4 .adly_case .slick-next {
  border-color: #414e69;
}

.guo_america_box4 .adly_case .slick-prev {
  background: url(../images/left2.png) no-repeat center center;
  left: -100px;
}

.guo_america_box4 .adly_case .slick-next {
  background: url(../images/right2.png) no-repeat center center;
  right: -100px;
}

.guo_america_box5 .qh_box ul li .text {
  width: 778px;
}

.guo_america_box6 {
  background: url(../images/america_bg3.jpg) no-repeat center top / cover;
}

.guo_america_box6 .left {
  margin-left: 0;
  width: 360px;
  line-height: normal;
  margin-top: 0;
  color: #fff;
  padding: 40px 0;
}

.guo_america_box6 .left h3 {
  font-size: 18px;
}

.guo_america_box6 .left h3 span {
  font-size: 14px;
}

.guo_america_box6 .left p {
  margin-top: 14px;
  color: #acb2bd;
  line-height: 30px;
  height: 120px;
  overflow: hidden;
}

.guo_america_box6 .left .more {
  margin-top: 20px;
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  background: url(../images/passport_icon2.png) no-repeat right center;
  line-height: 20px;
  padding-right: 15px;
}

.guo_america_box6 .left .img {
  margin-top: 30px;
  line-height: 0;
}

.guo_america_box6 .right {
  width: 758px;
}

.guo_america_box6 .right .tit_box ol li .text {
  width: 615px;
}

.guo_america_box7 {
  background: #e5e5e5;
}

.guo_america_box7 .left {
  background: #fcfcfc;
  height: 456px;
}

.guo_america_box7 .left .bt h3 {
  color: #333333;
}

.guo_america_box7 .left ol li {
  background: url(../images/adly_icon8.jpg) no-repeat left center;
}

.guo_america_box7 .left ol li a {
  color: #333333;
}

.guo_america_box7 .right {
  background: #fefefe;
  width: 790px;
}

.guo_america_box7 .right .top_wx .text {
  background-image: url(../images/america_icon7.jpg);
}

.guo_america_box7 .right .top_wx ol {
  background: #f5f5f5;
}

.guo_asia_box {
  background: url(../images/asia_bg1.jpg) no-repeat center top;
  padding: 40px 0;
}

.guo_asia_box .left {
  float: left;
  width: 372px;
  color: #ffffff;
  position: relative;
  height: 499px;
}

.guo_asia_box .left span {
  font-size: 14px;
  text-transform: uppercase;
}

.guo_asia_box .left h3 {
  margin-top: 12px;
  font-size: 30px;
}

.guo_asia_box .left i {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 20px 0 15px;
}

.guo_asia_box .left p {
  font-size: 18px;
  line-height: 36px;
}

.guo_asia_box .left .bottom {
  position: absolute;
  left: 0;
  bottom: 0;
}

.guo_asia_box .left .bottom span {
  font-size: 34px;
  font-family: arial;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.1;
  line-height: 36px;
}

.guo_asia_box .left .bottom p {
  font-size: 55px;
  font-family: arial;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.1;
  line-height: 68px;
}

.guo_asia_box .right {
  width: 778px;
  background: #e9eaed;
  float: right;
  padding: 35px 40px;
  position: relative;
}

.guo_asia_box .right .tits {
  position: absolute;
  right: 10px;
  top: -15px;
}

.guo_asia_box .right .tits span {
  margin-left: 2px;
  display: block;
  float: left;
  line-height: 45px;
  min-width: 120px;
  padding: 0 20px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  background: #1c356b;
}

.guo_asia_box .right .tits span:hover,
.guo_asia_box .right .tits span.cur {
  background: #cc0000;
}

.guo_asia_box .right .tit_box ol li {
  float: left;
  width: 100%;
  margin-top: 25px;
}

.guo_asia_box .right .tit_box ol li:first-child {
  margin-top: 0;
}

.guo_asia_box .right .tit_box ol li .icon {
  width: 40px;
  float: left;
  line-height: 0;
}

.guo_asia_box .right .tit_box ol li .text {
  float: right;
  width: 635px;
}

.guo_asia_box .right .tit_box ol li .text h3 {
  color: #cc0000;
  font-size: 20px;
}

.guo_asia_box .right .tit_box ol li .text h3 em {
  display: inline-block;
  color: #333333;
  margin: 0 8px 0 5px;
}

.guo_asia_box .right .tit_box ol li .text h3 span {
  color: #333333;
  font-size: 16px;
  font-weight: normal;
}

.guo_asia_box .right .tit_box ol li .text p {
  margin-top: 10px;
  color: #333333;
  font-size: 15px;
  line-height: 30px;
}

.guo_asia_box2 {
  padding: 40px 0;
}

.guo_asia_box2 .img {
  float: left;
  width: 488px;
  line-height: 0;
  max-height: 100%;
  max-width: 100%;
}

.guo_asia_box2 .img img {
  width: 488px;
  height: 370px;
}

.guo_asia_box2 .text {
  float: right;
  width: 678px;
}

.guo_asia_box2 .text h3 {
  color: #333333;
  font-size: 24px;
}

.guo_asia_box2 .text h3 span {
  color: #666666;
  font-size: 14px;
  display: inline-block;
  margin-left: 20px;
}

.guo_asia_box2 .text .t {
  margin-top: 16px;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
}

.guo_asia_box2 .text a.more {
  margin-top: 18px;
  color: #0f1f41;
  font-size: 14px;
  display: inline-block;
  background: url(../images/jt.jpg) no-repeat right center;
  padding-right: 15px;
  line-height: 20px;
}

.guo_asia_box2 .text ol {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dotted #cccccc;
}

.guo_asia_box2 .text ol li {
  float: left;
  width: 46%;
}

.guo_asia_box2 .text ol li:last-child {
  float: right;
}

.guo_asia_box2 .text ol li .img_x {
  float: left;
  width: 80px;
  height: 80px;
  line-height: 0;
}

.guo_asia_box2 .text ol li .img_x img {

  width: 80px;
  height: 80px;

}

.guo_asia_box2 .text ol li .text_t {
  padding-top: 5px;
  float: right;
  width: 215px;
}

.guo_asia_box2 .text ol li .text_t .bt {
  color: #333333;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_asia_box2 .text ol li .text_t p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  margin-top: 6px;
}

.guo_asia_box3 {
  background: url(../images/asia_bg2.png) no-repeat center top;
  /*background-size: 100% 100%;*/
  margin-top: -15px;
  padding: 33px 0;
}

.guo_asia_box3 .left {
  float: left;
  width: 374px;
  color: #fff;
}

.guo_asia_box3 .left h3 {
  font-size: 24px;
}

.guo_asia_box3 .left h3 span {
  display: inline-block;
  font-size: 14px;
  margin-left: 15px;
  font-weight: normal;
}

.guo_asia_box3 .left p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 30px;
  height: 90px;
  overflow: hidden;
}

.guo_asia_box3 .left .img {
  line-height: 0;
  margin-top: 30px;
}

.guo_asia_box3 .left .img img {
  width: 427px;
  height: 146px;
}

.guo_asia_box3 .left a.more {
  margin-top: 72px;
  display: inline-block;
  color: #fff;
  background: url(../images/adly_icon9.png) no-repeat right center;
  padding-right: 15px;
  line-height: 20px;
}

.guo_asia_box3 .right {
  float: right;
  width: 762px;
}

.guo_asia_box3 .right .tits h3 {
  float: left;
  color: #ffffff;
  font-size: 30px;
}

.guo_asia_box3 .right .tits h3 span {
  display: inline-block;
  margin-left: 10px;
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_asia_box3 .right .tits a {
  float: right;
  display: block;
  line-height: 40px;
  color: #999999;
  font-size: 14px;
  width: 108px;
  text-align: center;
  border: 1px solid #4b5059;
}

.guo_asia_box3 .right .box {
  margin-top: 25px;
}

.guo_asia_box3 .right .box .img {
  float: left;
  width: 255px;
  line-height: 0;
}

.guo_asia_box3 .right .box .img img {
  width: 255px;
  height: 320px;
}

.guo_asia_box3 .right .box .text {
  float: right;
  width: 480px;
}

.guo_asia_box3 .right .box .text h3 {
  color: #ffffff;
  font-size: 18px;
}

.guo_asia_box3 .right .box .text p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 24px;
  color: #d6d7d9;
  height: 72px;
  overflow: hidden;
}

.guo_asia_box3 .right .box .text a.more {
  margin-top: 20px;
  color: #ffffff;
  display: inline-block;
  background: url(../images/adly_icon9.png) no-repeat right center;
  padding-right: 15px;
  line-height: 20px;
}

.guo_asia_box3 .right .box .text ol {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dotted #5c6068;
}

.guo_asia_box3 .right .box .text ol li {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 40px;
  background: url(../images/gicon7.png) no-repeat left center;
  padding-left: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_asia_box3 .right .box .text ol li a {
  display: block;
  color: #ffffff;
}

.guo_asia_box4 {
  background: url(../images/asia_bg3.jpg) no-repeat center top;
  height: 470px;
}

.guo_asia_box4 .text {
  float: right;
  width: 424px;
  background: #ffffff;
  margin-top: 60px;
  padding: 30px;
  height: 438px;
}

.guo_asia_box4 .text span {
  display: block;
  color: #666666;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_asia_box4 .text h3 {
  color: #333333;
  font-size: 30px;
  margin-top: 5px;
}

.guo_asia_box4 .text p {
  margin-top: 20px;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
}

.guo_asia_box5 {
  background: url(../images/asia_bg4.jpg) repeat-y center top;
  padding-bottom: 50px;
  padding-top: 28px;
}

.guo_asia_box5 .left {
  float: left;
  width: 340px;
}

.guo_asia_box5 .left .bt {
  color: #333333;
  font-size: 24px;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_asia_box5 .left p {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
  height: 180px;
}

.guo_asia_box5 .left a {
  margin-top: 28px;
  display: inline-block;
  color: #666666;
  font-size: 14px;
  background: url(../images/passport_icon1.png) no-repeat right center;
  line-height: 24px;
  padding-right: 18px;
}

.guo_asia_box5 .left .img {
  line-height: 0;
  margin-top: 34px;

}

.guo_asia_box5 .left .img img {
  height: 117px;
  width: 390px;
}

.guo_asia_box5 .right {
  float: right;
  width: 770px;
  padding-top: 35px;
}

.guo_asia_box5 .right .tit {
  margin-top: 2px;
}

.guo_asia_box5 .right .tit span {
  float: left;
  line-height: 50px;
  color: #333333;
  padding: 0 20px;
  cursor: pointer;
  font-size: 16px;
}

.guo_asia_box5 .right .tit span.cur,
.guo_asia_box5 .right .tit span:hover {
  color: #fff;
  background: #cc0000;
}

.guo_asia_box5 .right .box_t {
  margin-top: 20px;
}

.guo_asia_box5 .right .box_t .t {
  color: #666666;
  font-size: 14px;
  line-height: 34px;
  max-height: 240px;
  overflow: hidden;
}

.guo_asia_box5 .right .box_t a {
  margin-top: 28px;
  display: inline-block;
  color: #666;
  font-size: 14px;
  background: url(../images/passport_icon1.png) no-repeat right center;
  line-height: 24px;
  padding-right: 18px;
}

.guo_europe_box {
  background: url(../images/europe_bg1.jpg) no-repeat center top / cover;
}

.guo_europe_box .left,
.guo_europe_box .right {
  width: 550px;
}

.guo_europe_box .left .bt h3,
.guo_europe_box .right .bt h3 {
  color: #fff;
}

.guo_europe_box .left .bt a,
.guo_europe_box .right .bt a {
  border: 1px solid #354565;
  color: #fff;
}

.guo_europe_box .left .text .bt {
  color: #fff;
}

.guo_europe_box .left .text p {
  color: #fff;
}

.guo_europe_box .left .text .more {
  color: #fff;
  background: url(../images/adly_icon9.png) no-repeat right center;
}

.guo_europe_box .right ol {
  border-top: 1px dotted #43516e;
}

.guo_europe_box .right ol li {
  border-bottom: 1px dotted #43516e;
  background: url(../images/gicon7.png) no-repeat left center;
}

.guo_europe_box .right ol li p {
  color: #fff;
}

.guo_europe_box .right ol li span {
  color: #fff;
}

.guo_europe_box2 {
  background: url(../images/europe_bg2.png) no-repeat center top;
}

.guo_europe_box2 .left {
  float: right;
}

.guo_europe_box2 .left p {
  height: 120px;
  overflow: hidden;
}

.guo_europe_box2 .left a.more {
  margin-top: 38px;
}

.guo_europe_box2 .right {
  float: left;
}

.guo_europe_box3 {
  padding-top: 28px;
}

.guo_europe_box3 .left .bt span {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 10px;
}

.guo_europe_box4 {
  background: url(../images/europe_bg3.jpg) no-repeat center top;
}

.guo_compared_box {
  background: #f1f5f8;
  padding: 20px 0 50px;
}

.guo_compared_box .tits {
  background: #1c356b;
  text-align: center;
  color: #fff;
  padding: 15px 0 18px;
}

.guo_compared_box .tits h3 {
  font-size: 30px;
}

.guo_compared_box .tits p {
  font-family: arial;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 10px;
}

.guo_compared_box .tables table tr {
  background: #ffffff;
}

.guo_compared_box .tables table tr:nth-child(2n) {
  background: #efefef;
}

.guo_compared_box .tables table tr td {
  border: 1px solid #ccc;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  padding: 15px;
}

.guo_compared_box .tables table tr td:first-child {
  color: #333333;
  font-weight: bold;
  text-align: center;
}

.guo_compared_box .tables table tr td ol li {
  margin-top: 10px;
  background: #ffffff;
  float: left;
  width: 100%;
}

.guo_compared_box .tables table tr td ol li .cbox {
  width: 100%;
  height: 30px;
  position: relative;
}

.guo_compared_box .tables table tr td ol li .cbox .ch {
  display: block;
  width: 239px;
  height: 30px;
  line-height: 28px;
  border: 1px solid #ccc;
  padding: 0 25px 0 10px;
  color: #333;
  cursor: pointer;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_compared_box .tables table tr td ol li .cbox .ch:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 12px;
  width: 11px;
  height: 6px;
  background: url(../images/compared_icon1.jpg) no-repeat center center;
}

.guo_compared_box .tables table tr td ol li .cbox .con {
  display: none;
  z-index: 999;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #FFFFFF;
  padding: 10px;
}

.guo_compared_box .tables table tr td ol li .cbox .con a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #666;
  font-size: 14px;
  display: block;
  line-height: 26px;
}

.guo_compared_box .tables table tr td ol li .cbox .con a:hover {
  color: #333;
}

.guo_compared_box .tables table tr td a.more {
  display: block;
  width: 124px;
  line-height: 38px;
  background: #cc0000;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}

.banner {
  height: auto;
}





/**2018-9-26**/
.tit_bt {
  line-height: 42px;
}

.tit_bt h3 {
  float: left;
  color: #333333;
  font-size: 24px;
}

.tit_bt h3 span {
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
  text-transform: uppercase;
}

.tit_bt a {
  float: right;
  border: 1px solid #d9dcdf;
  display: inline-block;
  padding: 0 25px;
  line-height: 42px;
  color: #999999;
}

.guo_fgs_box {
  background: url(../images/fgs_bg2.jpg) no-repeat center top / cover, #14264e;
  min-height: 476px;
  padding-top: 30px;
}

.guo_fgs_box .left {
  float: left;
  width: 754px;
  padding-right: 30px;
}

.guo_fgs_box .left ol li {
  padding: 15px 0;
  border-top: 1px dotted #cdd0d3;
  float: left;
  width: 100%;
}

.guo_fgs_box .left ol li:first-child {
  border: none;
}

.guo_fgs_box .left ol li .img {
  width: 180px;
  line-height: 0;
  float: left;
}

.guo_fgs_box .left ol li .img img {
  width: 180px;
  height: 160px;
}

.guo_fgs_box .left ol li .text {
  float: right;
  width: 72%;
}

.guo_fgs_box .left ol li .text .top {
  line-height: 24px;
}

.guo_fgs_box .left ol li .text .top h3 {
  float: left;
  color: #0f1f41;
  font-size: 20px;
  /*max-width: 75%;*/
  text-overflow: ellipsis;
  overflow: hidden;
  /*white-space: nowrap;*/
}

.guo_fgs_box .left ol li .text .top span {
  float: right;
  color: #999999;
}

.guo_fgs_box .left ol li .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 26px;
  height: 78px;
  overflow: hidden;
}

.guo_fgs_box .left ol li .text a.more {
  margin-top: 20px;
  color: #0f1f41;
  font-size: 14px;
  display: inline-block;
  background: url(../images/jt.jpg) no-repeat right center;
  padding-right: 16px;
  line-height: 24px;
}

.guo_fgs_box .right {
  float: right;
  width: 446px;
  padding-left: 30px;
}

.guo_fgs_box .right .img_box {
  margin-top: 15px;
  background: #f9fafa;
  height: 160px;
  padding: 20px 16px;
}

.guo_fgs_box .right .img_box .img {
  width: 120px;
  height: 120px;
  line-height: 0;
  float: left;
}

.guo_fgs_box .right .img_box .img img {
  width: 120px;
  height: 120px;
}

.guo_fgs_box .right .img_box .text {
  width: 64%;
  float: right;
  padding-top: 10px;
}

.guo_fgs_box .right .img_box .text h3 {
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  /*white-space: nowrap;*/
}

.guo_fgs_box .right .img_box .text p {
  margin-top: 12px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}

.guo_fgs_box .right ol {
  margin-top: 20px;
  border-top: 1px dotted #d9d9d9;
}

.guo_fgs_box .right ol li {
  float: left;
  width: 100%;
  line-height: 58px;
  border-bottom: 1px dotted #d9d9d9;
  background: url(../images/adly_icon8.jpg) no-repeat 16px center;
  padding-left: 36px;
  padding-right: 10px;
}

.guo_fgs_box .right ol li p {
  float: left;
  max-width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #2e3c4a;
  font-size: 16px;
}

.guo_fgs_box .right ol li span {
  float: right;
  color: #999999;
  font-size: 12px;
}

.guo_fgs_box2 {
  background: url(../images/fgs_bg3.jpg) no-repeat center top / cover;
  min-height: 500px;
  padding-top: 20px;
}

.guo_fgs_box2 .left {
  float: left;
  width: 60.5%;
}

.guo_fgs_box2 .left .tit_bt h3 {
  color: #fff;
}

.guo_fgs_box2 .left ol {
  margin-top: 10px;
  margin-left: -30px;
}

.guo_fgs_box2 .left ol li {
  text-align: center;
  float: left;
  width: 216px;
  margin-bottom: 16px;
  margin-left: 30px;
}

.guo_fgs_box2 .left ol li .img {
  line-height: 0;
  overflow: hidden;
}

.guo_fgs_box2 .left ol li .img img {
  width: 214px;
  height: 155px;
}

.guo_fgs_box2 .left ol li p {
  margin-top: 15px;
  color: #ffffff;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_fgs_box2 .right {
  width: 34%;
  float: right;
  padding-top: 10px;
}

.guo_fgs_box2 .right .t {
  color: #fff;
  font-size: 16px;
  line-height: 34px;
}

.guo_fgs_box2 .right .g_shipin {
  margin-top: 20px;
}

.guo_fgs_box2 .right .g_shipin .video {
  float: left;
  width: 143px;
  height: 104px;
  position: relative;
}

.guo_fgs_box2 .right .g_shipin .video a img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_fgs_box2 .right .g_shipin .text {
  float: right;
  width: 60%;
}

.guo_fgs_box2 .right .g_shipin .text a {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_fgs_box2 .right .g_shipin .text p {
  margin-top: 20px;
  color: #fefefe;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}

.guo_fgs_box2 .right .bottom {
  margin-top: 30px;
}

.guo_fgs_box2 .right .bottom span {
  display: block;
  float: left;
  width: 200px;
  line-height: 0;
}

.guo_fgs_box2 .right .bottom span img {
  width: 200px;
  height: 200px;
}

.guo_fgs_box2 .right .bottom ol {
  float: right;
  width: 180px;
  margin-top: 12px;
}

.guo_fgs_box2 .right .bottom ol li {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.guo_fgs_box2 .right .bottom ol li input {
  font-size: 14px;
  background: #ffffff;
  border: none;
  line-height: 50px;
  padding: 0 10px;
  border-radius: 3px;
  width: 100%;
  height: 50px;
}

.guo_fgs_box2 .right .bottom ol li .btn {
  background: #cc0000;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.guo_fgs_box3 {
  background: #f1f5f8;
  padding: 30px 0 40px;
}

.guo_fgs_box3 .guo_fgs_tab {
  margin-top: 15px;
}

.guo_fgs_box3 .guo_fgs_tab ol {
  border-left: 1px dotted #d8dcdf;
}

.guo_fgs_box3 .guo_fgs_tab ol li {
  float: left;
  width: 11.11111111%;
  border-top: 1px dotted #d8dcdf;
  border-right: 1px dotted #d8dcdf;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
}

.guo_fgs_box3 .guo_fgs_tab ol li .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
}

.guo_fgs_box3 .guo_fgs_tab ol li .icon span img {
  width: 72px;
  height: 72px;
}

.guo_fgs_box3 .guo_fgs_tab ol li .icon img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.guo_fgs_box3 .guo_fgs_tab ol li p {
  color: #666666;
  font-size: 16px;
  margin-top: 10px;
  line-height: 24px;
}

.guo_fgs_box3 .guo_fgs_tab ol li:hover,
.guo_fgs_box3 .guo_fgs_tab ol li.cur {
  background: #fff;
}

.guo_fgs_box3 .guo_fgs_tab ol li:hover p,
.guo_fgs_box3 .guo_fgs_tab ol li.cur p {
  color: #14264e;
  font-weight: bold;
}

.guo_fgs_box3 .guo_fgs_div {
  background: #fff;
  padding: 30px;
}

.guo_fgs_box3 .guo_fgs_div ul li {
  float: left;
  width: 100%;
}

.guo_fgs_box3 .guo_fgs_div ul li .img_left {
  float: left;
  width: 310px;
  line-height: 0;
  position: relative;
}

.guo_fgs_box3 .guo_fgs_div ul li .img_left .img {
  line-height: 0;
  overflow: hidden;
}

.guo_fgs_box3 .guo_fgs_div ul li .img_left span {
  position: absolute;
  left: -5px;
  top: -5px;
  background: #cc0000;
  line-height: 50px;
  display: inline-block;
  padding: 0 18px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
}

.guo_fgs_box3 .guo_fgs_div ul li .text {
  float: right;
  width: 70%;
}

.guo_fgs_box3 .guo_fgs_div ul li .text .t {
  border-top: 1px dotted #cccccc;
  padding: 20px 0;
}

.guo_fgs_box3 .guo_fgs_div ul li .text .t:first-child {
  border-top: none;
  padding-top: 0px;
}

.guo_fgs_box3 .guo_fgs_div ul li .text .t .bt {
  color: #333333;
  font-size: 16px;
  font-weight: bold;
}

.guo_fgs_box3 .guo_fgs_div ul li .text .t p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 26px;
  height: 52px;
  overflow: hidden;
}

.guo_fgs_tedian {
  background: url(../images/fgs_bg.png) no-repeat center top;
  min-height: 519px;
  padding-top: 50px;
}

.guo_fgs_tedian .tit {
  color: #fff;
  font-size: 24px;
}

.guo_fgs_tedian .tit span {
  font-size: 13px;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
  text-transform: uppercase;
}

.guo_fgs_tedian .left {
  float: left;
  width: 422px;
}

.guo_fgs_tedian .left ol {
  margin-top: 30px;
}

.guo_fgs_tedian .left ol li {
  float: left;
  width: 45%;
  margin-bottom: 50px;
  text-align: center;
}

.guo_fgs_tedian .left ol li .icon {
  height: 75px;
  overflow: hidden;
}

.guo_fgs_tedian .left ol li .text {
  margin-top: 15px;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}

.guo_fgs_tedian .right {
  padding-left: 30px;
  float: right;
  width: 778px;
}

.guo_fgs_tedian .right .box {
  margin-top: 30px;
}

.guo_fgs_tedian .right .box .img {
  float: left;
  width: 266px;
}

.guo_fgs_tedian .right .box .img img {
  width: 266px;
  height: 353px;
}

.guo_fgs_tedian .right .box ul {
  width: 460px;
  float: right;
  margin-top: -5px;
}

.guo_fgs_tedian .right .box ul li {
  float: left;
  width: 100%;
  font-size: 16px;
  line-height: 45px;
}

.guo_fgs_tedian .right .box ul li a {
  display: block;
  float: left;
  max-width: 88%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #ffffff;
}

.guo_fgs_tedian .right .box ul li span {
  float: right;
  font-size: 12px;
  color: #ffffff;
}

/*20181015*/
.guo_country {
  background: #e6edf2;
  padding: 20px 0 40px;
}

.guo_country .bt {
  background: #1c356b;
  height: 60px;
  line-height: 60px;
  color: #fff;
  padding: 0 25px;
}

.guo_country .bt h3 {
  font-size: 24px;
  float: left;
}

.guo_country .bt p {
  font-family: arial;
  text-transform: uppercase;
  float: left;
  margin-left: 10px;
}

.guo_country .box .left {
  float: left;
  width: 855px;
}

.guo_country .box .left .contrast-item {
  margin-top: 10px;
  background: #fff;
  padding: 5px 0 25px;
}

.guo_country .box .left .contrast-item .tit {
  float: left;
  color: #1c356b;
  font-size: 20px;
  width: 102px;
  padding-top: 42px;
  text-align: center;
}

.guo_country .box .left .contrast-item ol {
  float: right;
  width: 752px;
}

.guo_country .box .left .contrast-item ol li {
  float: left;
  width: 165px;
  height: 80px;
  border: 1px solid #f5f5f5;
  margin-right: 23px;
  margin-top: 20px;
  padding: 20px 0 20px 20px;
  position: relative;
  cursor: pointer;
}

.guo_country .box .left .contrast-item ol li .show span {
  display: block;
  float: left;
  width: 60px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.guo_country .box .left .contrast-item ol li .show span img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_country .box .left .contrast-item ol li .show p {
  float: left;
  line-height: 40px;
  color: #333333;
  font-size: 16px;
  margin-left: 10px;
  width: 72px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_country .box .left .contrast-item ol li .hide {
  display: none;
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 22px 0 20px 13px;
}

.guo_country .box .left .contrast-item ol li .hide span {
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/vs.png) no-repeat center center;
  float: left;
}

.guo_country .box .left .contrast-item ol li .hide p {
  line-height: 32px;
  float: left;
  color: #fff;
  font-size: 24px;
  margin-left: 10px;
}

.guo_country .box .left .contrast-item ol li:hover .hide,
.guo_country .box .left .contrast-item ol li.cur .hide {
  display: block;
}

.guo_country .box .left .form-tips {
  background: #fff;
  margin-top: 10px;
}

.guo_country .box .left .form-tips .t {
  padding: 25px 0;
  text-align: center;
  line-height: 24px;
  color: #666666;
}

.guo_country .box .left .form-tips .from-box {
  border-top: 5px solid #f1f5f8;
  margin: 0 20px;
  padding: 40px 0;
}

.guo_country .box .left .form-tips .from-box ul {
  text-align: center;
}

.guo_country .box .left .form-tips .from-box ul li {
  display: inline-block;
  margin: 0 10px;
}

.guo_country .box .left .form-tips .from-box ul li span {
  display: inline-block;
  color: #666666;
  font-size: 16px;
}

.guo_country .box .left .form-tips .from-box ul li input {
  border: 1px solid #d6d6d6;
  height: 35px;
  line-height: 33px;
  padding: 0 10px;
  width: 150px;
}

.guo_country .box .left .form-tips .from-box ul li select {
  width: 150px;
  height: 36px;
  border: 1px solid #d6d6d6;
  padding: 0 7px;
}

.guo_country .box .left .form-tips .from-box .btn {
  width: 180px;
  height: 50px;
  line-height: 50px;
  display: block;
  background: #cc0000;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 36px auto 0;
}

.guo_country .box .right {
  float: right;
  width: 335px;
}

.guo_country .box .right .right_itea {
  background: #fff;
  padding: 10px 30px 10px;
  position: relative;
}

.guo_country .box .right .right_itea:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #f0f0f0;
}

.guo_country .box .right .right_itea .tits {
  position: relative;
  z-index: 2;
  margin-left: -30px;
  margin-right: -30px;
  height: 50px;
  line-height: 50px;
  background: #1c356b;
  color: #fff;
  font-size: 18px;
  padding: 0 25px;
}

.guo_country .box .right .right_itea .tab-title {
  margin-top: 20px;
}

.guo_country .box .right .right_itea .tab-title h3 {
  color: #333333;
  font-size: 17px;
  padding: 0 20px;
  position: relative;
}

.guo_country .box .right .right_itea .tab-title h3:before {
  content: "";
  position: absolute;
  left: -1px;
  top: 3px;
  width: 3px;
  height: 18px;
  background: #333333;
}

.guo_country .box .right .right_itea .tab-title .tab-box {
  margin-top: 8px;
}

.guo_country .box .right .right_itea .tab-title .tab-box a {
  line-height: 34px;
  display: block;
  color: #333333;
  font-size: 15px;
  padding: 0 30px;
}

.guo_country .box .right .right_itea .tab-title .tab-box a:Hover {
  background: #f2f2f2;
}

.guo_country .box .right .right_itea .tab-title .tab_box {
  margin-top: 15px;
}

.guo_country .box .right .right_itea .tab-title .tab_box li {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.guo_country .box .right .right_itea .tab-title .tab_box li .bt_tab {
  color: #333333;
  font-size: 15px;
  font-weight: bold;
  padding: 0 30px;
  cursor: pointer;
  position: relative;
}

.guo_country .box .right .right_itea .tab-title .tab_box li .bt_tab:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 5px;
  width: 11px;
  height: 11px;
  background: url(../images/tab1.png) no-repeat center center / cover;
}

.guo_country .box .right .right_itea .tab-title .tab_box li .con {
  display: none;
  margin-top: 5px;
}

.guo_country .box .right .right_itea .tab-title .tab_box li .con a {
  line-height: 34px;
  display: block;
  color: #333333;
  background: url(../images/tab3.png) no-repeat 30px center;
  font-size: 15px;
  padding: 0 0 0 45px;
}

.guo_country .box .right .right_itea .tab-title .tab_box li .con a:Hover {
  background: #f2f2f2 url(../images/tab3.png) no-repeat 30px center;
}

.guo_country .box .right .right_itea .tab-title .tab_box li:hover .bt_tab:before,
.guo_country .box .right .right_itea .tab-title .tab_box li.cur .bt_tab:before {
  background: url(../images/tab2.png) no-repeat center center / cover;
}

.guo_country .box .right .guanggao {
  line-height: 0;
  width: 335px;
  height: 130px;
  margin-top: 10px;
}

.guo_bread {
  color: #666666;
  font-size: 14px;
  padding: 20px 0;
  padding-left: 20px;
  background: url(../images/guoqz1.jpg) no-repeat left center;
}

.guo_bread a {
  color: #666;
}

.guo_bread a:hover {
  text-decoration: underline;
}

.guo_visax {
  background: #dee7ee;
  padding-bottom: 40px;
}

.guo_visax .box .left {
  width: 845px;
  float: left;
}

.guo_visax .box .left .visax_bt {
  background: #1c356b;
  height: 60px;
  line-height: 60px;
  color: #fff;
  padding: 0 40px;
}

.guo_visax .box .left .visax_bt h3 {
  font-size: 24px;
  float: left;
}

.guo_visax .box .left .visax_bt p {
  font-family: arial;
  text-transform: uppercase;
  float: left;
  margin-left: 10px;
}

.guo_visax .box .left .text_show {
  border: 2px solid #d7d7d7;
  background: #fff;
  padding: 26px 40px 30px;
}

.guo_visax .box .left .text_show h1 {
  text-align: center;
  color: #333333;
  font-size: 30px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #e5e5e5;
}

.guo_visax .box .left .text_show .data {
  text-align: center;
  margin-top: 15px;
}

.guo_visax .box .left .text_show .data span {
  display: inline-block;
  margin: 0 10px;
  color: #999999;
}

.guo_visax .box .left .text_show .show {
  margin-top: 25px;
}

.guo_visax .box .left .text_show .show .t {
  float: left;
  width: 535px;
}

.guo_visax .box .left .text_show .show .t h3 {
  color: #333333;
  font-size: 18px;
}

.guo_visax .box .left .text_show .show .t p {
  margin-top: 10px;
  line-height: 30px;
}

.guo_visax .box .left .text_show .show .img {
  float: right;
  width: 200px;
  height: 156px;
  overflow: hidden;
}

.guo_visax .box .left .guo_lbjs {
  margin-top: 18px;
  background: #fff;
  border: 2px solid #d7d7d7;
}

.guo_visax .box .left .guo_lbjs .text {
  padding: 30px 40px;
}

.guo_visax .box .left .guo_lbjs .text p {
  line-height: 30px;
  color: #333;
}

.guo_visax .box .left .guo_lbjs .text .t p {
  color: #14264e;
}

.guo_visax .box .left .guo_btn_tab {
  position: relative;
}

.guo_visax .box .left .guo_btn_tab .btn {
  position: absolute;
  right: 40px;
  top: 18px;
  width: 24px;
  height: 24px;
  background: url(../images/guo_lbjs_btn.png) no-repeat center center / cover;
}

.guo_visax .box .left .guo_btn_tab .btn.cur,
.guo_visax .box .left .guo_btn_tab .btn:hover {
  background: url(../images/guo_lbjs_btn2.png) no-repeat center center / cover;
}

.guo_visax .box .left .guo_from_box {
  margin-top: 18px;
  background: url(../images/guo_from_bg.jpg) no-repeat center center / cover;
  min-height: 392px;
  padding: 22px 40px 0;
  text-align: center;
}

.guo_visax .box .left .guo_from_box h3 {
  color: #fff;
  font-size: 24px;
}

.guo_visax .box .left .guo_from_box .name {
  margin-top: 10px;
  padding-bottom: 16px;
  color: #999999;
  border-bottom: 1px dotted #434c5f;
}

.guo_visax .box .left .guo_from_box ul {
  margin-top: 20px;
  padding: 0 40px;
  position: relative;
}

.guo_from_box ul .jpccheckbox {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  width: auto !important;
  position: relative;
  left: -146px;
  margin-top: 20px !important;
}

.guo_from_box ul .jpccheckbox input {
  width: 19px !important;
  height: 19px !important;
  margin: 0 !important;
  padding: 0 !important;
  margin-right: 10px !important;
}

.guo_from_box ul .jpccheckbox a {
  color: white;
  font-size: 14px;
}

.guo_from_box ul .jpccheckbox a span {
  color: #1294d7 !important;
  float: none !important;
  width: auto !important;
  font-size: 14px !important;
}

.guo_visax .box .left .guo_from_box ul li {
  display: inline-block;
  margin: 0 26px;
  width: 250px;
  margin-top: 25px;
}

.guo_visax .box .left .guo_from_box ul li span {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  width: 80px;
  text-align: left;
  float: left;
}

.guo_visax .box .left .guo_from_box ul li input,
.guo_visax .box .left .guo_from_box ul li select {
  float: left;
  width: 170px;
  height: 36px;
  padding: 0 10px;
  background: #fff;
  border: none;
}

.guo_visax .box .left .guo_from_box ul li .t {
  width: 96px;
}

.guo_visax .box .left .guo_from_box ul li img {
  width: 73px;
  height: 35px;
  float: left;
}

.guo_visax .box .left .guo_from_box .btn {
  display: block;
  width: 180px;
  background: #cc0000;
  line-height: 50px;
  color: #fff;
  margin: 30px auto 0;
  font-size: 20px;
  font-weight: bold;
}

.guo_visax .box .right {
  float: right;
  width: 332px;
}

.guo_visax .box .right .top {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  line-height: 26px;
}

.guo_visax .box .right .top h3 {
  float: left;
  color: #1c356b;
  font-size: 20px;
}

.guo_visax .box .right .top span {
  float: left;
  color: #999999;
  display: inline-block;
  margin-left: 10px;
}

.guo_visax .box .right .top a {
  float: right;
  color: #999999;
}

.guo_visax .box .right .guo_qtqz,
.guo_visax .box .right .guo_rmsp,
.guo_visax .box .right .guo_zxhd {
  padding: 0 20px;
  background: #fff;
  border: 2px solid #d7d7d7;
}

.guo_visax .box .right .guo_qtqz ol li {
  float: left;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px dotted #d7d7d7;
}

.guo_visax .box .right .guo_qtqz ol li:last-child {
  border-bottom: none;
}

.guo_visax .box .right .guo_qtqz ol li div {
  color: #333333;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_visax .box .right .guo_qtqz ol li p {
  margin-top: 5px;
  color: #999999;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}

.guo_visax .box .right .guo_rmsp {
  margin-top: 18px;
}

.guo_visax .box .right .guo_rmsp .video {
  padding: 20px 0;
}

.guo_visax .box .right .guo_rmsp .video .text {
  padding-top: 10px;
}

.guo_visax .box .right .guo_rmsp .video .text div {
  color: #333333;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_visax .box .right .guo_rmsp .video .text p {
  margin-top: 5px;
  color: #999999;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}

.guo_visax .box .right .guo_zxhd {
  margin-top: 18px;
}

.guo_visax .box .right .guo_zxhd ol li {
  padding: 20px 0;
  float: left;
  width: 100%;
  border-bottom: 1px dotted #d7d7d7;
}

.guo_visax .box .right .guo_zxhd ol li:last-child {
  border-bottom: none;
}

.guo_visax .box .right .guo_zxhd ol li div {
  color: #333333;
  font-size: 16px;
  margin-bottom: 8px;
}

.guo_visax .box .right .guo_zxhd ol li p {
  color: #999999;
  line-height: 24px;
}

.guo_visax .box .right .guo_zxhd ol li .btn {
  margin-left: 5px;
  background: #cc0000;
  display: inline-block;
  line-height: 18px;
  font-size: 12px;
  color: #fff;
  padding: 0 10px;
  border-radius: 3px;
}

.guo_blfy {
  padding: 30px 40px;
}

.guo_blfy table tr th {
  border: 1px solid #e5e5e5;
  background: #14264e;
  color: #ffffff;
  font-size: 16px;
  padding: 15px 20px;
  font-weight: normal;
}

.guo_blfy table tr td {
  border: 1px solid #e5e5e5;
  text-align: center;
  padding: 15px 20px;
  color: #333333;
}

.guo_blfy table tr:nth-child(2n-1) {
  background: #f2f2f2;
}

.guo_blfy .guo_tk {
  margin-top: 18px;
  color: #333333;
  line-height: 24px;
}

.guo_blfy .button_bottom {
  margin-top: 20px;
  background: #14264e;
  height: 52px;
  padding-left: 20px;
}

.guo_blfy .button_bottom p {
  float: left;
  line-height: 52px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
}

.guo_blfy .button_bottom .btn_button {
  float: right;
  width: 302px;
}

.guo_blfy .button_bottom .btn_button .t {
  float: left;
  width: 192px;
  height: 52px;
  background: #2c3c60;
  border: none;
  color: #fff;
  padding: 0 15px;
  font-size: 14px;
}

.guo_blfy .button_bottom .btn_button .d {
  float: right;
  width: 110px;
  height: 52px;
  background: #cc0000;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.guo_wjqd {
  padding: 30px 40px;
}

.guo_wjqd table tr th {
  border: 1px solid #e5e5e5;
  background: #14264e;
  color: #ffffff;
  font-size: 16px;
  padding: 15px 20px;
  font-weight: normal;
}

.guo_wjqd table tr td {
  border: 1px solid #e5e5e5;
  text-align: center;
  padding: 15px 20px;
  color: #333333;
}

.guo_wjqd table tr:nth-child(2n-1) {
  background: #f2f2f2;
}

/**2018-10-22**/
.guo_visax .box .left .guo_qzxxy {
  background: #fff;
  padding-bottom: 25px;
  padding-top: 25px;
  width: 845px;
  border: 2px solid #d7d7d7;
  z-index: 98;
}

/**2018-10-23**/
.guo_ymlc_text {
  padding: 40px;
}

.guo_ymlc_text h1 {
  text-align: center;
  color: #333333;
  font-size: 24px;
}

.guo_ymlc_text ol {
  margin-top: 40px;
  margin-left: -45px;
  background: url(../images/lei_bg.png) repeat-y right top;
}

.guo_ymlc_text ol li {
  float: left;
  width: 223px;
  background: #fbfbfb;
  border-radius: 3px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  padding: 0 18px;
  height: 126px;
  margin-left: 45px;
  margin-top: 60px;
}

.guo_ymlc_text ol li:first-child,
.guo_ymlc_text ol li:first-child+li,
.guo_ymlc_text ol li:first-child+li+li {
  margin-top: 0;
}

.guo_ymlc_text ol li.blackcover {
  width: 266px;
  margin-left: 3px;
  box-shadow: none;
}

.guo_ymlc_text ol li .top span {
  margin-top: -10px;
  float: left;
  display: block;
  width: 68px;
  height: 72px;
  color: #ffffff;
  font-size: 15px;
  padding: 22px 0 0 12px;
  background: url(../images/lei01.png) no-repeat center center;
}

.guo_ymlc_text ol li .top .bt {
  margin-top: 15px;
  width: 110px;
  float: right;
  color: #333333;
  font-size: 15px;
  line-height: 24px;
  /* height: 48px;*/
  overflow: hidden;
  font-weight: bold;
}

.guo_ymlc_text ol li p {
  margin-top: 6px;
  color: #666666;
  font-style: 12px;
  line-height: 18px;
  height: 54px;
  overflow: hidden;
}

/**2018-11-22**/
.info-tjxm.guo_home_div2 .home_con {
  background: none;
  line-height: auto;
  height: auto;
}

.info-tjxm.guo_home_div2 ul {
  margin-top: 10px;
}

.info-rmtj {
  background: none;
}

.info-rmtj .left ol li .text .t {
  margin-top: 15px;
}

.info-rmtj .left ol li .text .t p {
  margin-top: 0;
  height: auto;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
}

.info-rmtj .tit_bt h3 {
  font-weight: normal;
}

.hdyxx_div {
  background: #fff url(../images/bg100.jpg) repeat-x left top;
}

/**2018-11-19**/
.guo_foreign_box {
  background: url(../images/guo_foreign01.jpg) no-repeat center top;
}

.guo_foreign_box .left .tit_bt h3 {
  color: #333333;
}

.guo_foreign_box .left ol li p {
  color: #333333;
}

.guo_foreign_box .right {
  padding-top: 0;
}

.guo_foreign_box .right .tit_bt h3 {
  color: #fff;
}

.guo_foreign_box .right .bottom span {
  width: 170px;
  height: 170px;
}

.guo_foreign_box .right .bottom ol {
  margin-top: 0;
}

.guo_foreign_box2 {
  padding: 40px 0 40px;
}

.guo_foreign_box2 .top .bt {
  margin-top: -11px;
  float: left;
}

.guo_foreign_box2 .top .bt p {
  color: #999999;
  font-size: 14px;
  text-transform: uppercase;
}

.guo_foreign_box2 .top .bt h3 {
  color: #333333;
  font-size: 30px;
}

.guo_foreign_box2 .top .more {
  float: right;
  display: block;
  width: 106px;
  line-height: 44px;
  border: 1px solid #e5e5e5;
  text-align: center;
  color: #999999;
}

.guo_foreign_box2 .box {
  margin-top: 25px;
}

.guo_foreign_box2 .box .left {
  float: left;
  width: 38.5%;
  position: relative;
  overflow: hidden;
}

.guo_foreign_box2 .box .left .img {
  line-height: 0;
  width: 462px;
  height: 395px;
  overflow: hidden;
}

.guo_foreign_box2 .box .left p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  line-height: 45px;
}

.guo_foreign_box2 .box .right {
  float: right;
  width: 61.5%;
  overflow: hidden;
}

.guo_foreign_box2 .box .right ol li {
  text-align: center;
  float: left;
  width: 216px;
  margin-bottom: 16px;
  margin-left: 30px;
}

.guo_foreign_box2 .box .right ol li .img {
  line-height: 0;
  overflow: hidden;
}

.guo_foreign_box2 .box .right ol li p {
  margin-top: 15px;
  color: #333;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_foreign_box3 {
  background: url(../images/guo_foreign02.jpg) no-repeat center top;
  min-height: 906px;
  padding-top: 35px;
}

.guo_foreign_box3 .foreign_top .left {
  float: left;
  width: 298px;
  height: 100px;
  background: #cc0000;
  padding: 0 0 0 38px;
}

.guo_foreign_box3 .foreign_top .left .icon {
  margin-top: 20px;
  float: left;
  width: 102px;
  height: 60px;
  position: relative;
}

.guo_foreign_box3 .foreign_top .left .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_foreign_box3 .foreign_top .left .t {
  padding-top: 16px;
  float: left;
  color: #fff;
  margin-left: 28px;
}

.guo_foreign_box3 .foreign_top .left .t h3 {
  font-size: 30px;
}

.guo_foreign_box3 .foreign_top .left .t p {
  margin-top: 5px;
  font-size: 18px;
  font-family: arial;
}

.guo_foreign_box3 .foreign_top .right {
  float: right;
  width: 900px;
  height: 100px;
  background: url(../images/guo_foreign_bg1.jpg) no-repeat right center;
  padding: 0 100px;
}

.guo_foreign_box3 .foreign_top .right h3 {
  color: #fff;
  font-size: 20px;
  line-height: 100px;
}

.guo_foreign_box3 .foreign_mian .slick-prev,
.guo_foreign_box3 .foreign_mian .slick-next {
  width: 52px;
  height: 102px;
  margin-top: -28px;
  border: none;
}

.guo_foreign_box3 .foreign_mian .slick-prev {
  background: url(../images/foreign_left2.png) no-repeat center center;
  left: 30px;
}

.guo_foreign_box3 .foreign_mian .slick-next {
  background: url(../images/foreign_right2.png) no-repeat center center;
  right: 30px;
}

.guo_foreign_box3 .foreign_mian .slick-dots {
  bottom: -115px;
}

.guo_foreign_box3 .foreign_mian .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #939fad;
}

.guo_foreign_box3 .foreign_mian .slick-dots li.slick-active button {
  width: 35px;
  background: #cc0000;
}

.guo_foreign_box3 .foreign_service01 {
  margin-top: 20px;
}

.guo_foreign_box3 .foreign_service01 .foreign_box01 {
  margin-top: 50px;
  width: 1218px;
  margin-left: -9px;
}

.guo_foreign_box3 .foreign_service01 .foreign_box01 .text {
  margin: 0 9px;
  width: 154px;
  height: 178px;
  background: url(../images/guo_foreign_icon3.png) no-repeat center center;
  text-align: center;
  color: #fff;
  padding: 30px 12px 0;
}

.guo_foreign_box3 .foreign_service01 .foreign_box01 .text .icon {
  height: 40px;
  text-align: center;
  position: relative;
}

.guo_foreign_box3 .foreign_service01 .foreign_box01 .text .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.guo_foreign_box3 .foreign_service01 .foreign_box01 .text .t {
  padding-top: 10px;
}

.guo_foreign_box3 .foreign_service01 .foreign_box01 .text .t h3 {
  font-size: 15px;
  margin-bottom: 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_foreign_box3 .foreign_service01 .foreign_box01 .text .t p {
  font-size: 12px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}

.guo_foreign_box3 .foreign_service01 .foreign_box01 .slick-prev,
.guo_foreign_box3 .foreign_service01 .foreign_box01 .slick-next {
  width: 12px;
  height: 22px;
  margin-top: -11px;
  border: none;
}

.guo_foreign_box3 .foreign_service01 .foreign_box01 .slick-prev {
  background: url(../images/foreign_left.png) no-repeat center center;
  left: -50px;
}

.guo_foreign_box3 .foreign_service01 .foreign_box01 .slick-next {
  background: url(../images/foreign_right.png) no-repeat center center;
  right: -50px;
}

.guo_foreign_box3 .foreign_service02 {
  margin-top: 90px;
}

.guo_foreign_box3 .foreign_service02 .foreign_top .right {
  background: url(../images/guo_foreign_bg2.png);
}

.guo_foreign_box3 .foreign_service02 .foreign_box02 {
  margin-top: 60px;
  width: 1211px;
  margin-left: -6px;
}

.guo_foreign_box3 .foreign_service02 .foreign_box02 .text {
  margin: 0 6px;
  width: 160px;
  height: 160px;
  background: url(../images/guo_foreign_icon4.png) no-repeat center center / cover;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 50px 25px 0;
}

.guo_foreign_box3 .foreign_service02 .foreign_box02 .text h3 {
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guo_foreign_box3 .foreign_service02 .foreign_box02 .text p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}

.guo_foreign_box3 .foreign_service02 .foreign_box02 .slick-prev,
.guo_foreign_box3 .foreign_service02 .foreign_box02 .slick-next {
  width: 12px;
  height: 22px;
  margin-top: -11px;
  border: none;
}

.guo_foreign_box3 .foreign_service02 .foreign_box02 .slick-prev {
  background: url(../images/foreign_left1.png) no-repeat center center;
  left: -50px;
}

.guo_foreign_box3 .foreign_service02 .foreign_box02 .slick-next {
  background: url(../images/foreign_right1.png) no-repeat center center;
  right: -50px;
}

.guo_foreign_box4 {
  background: #fff;
  padding-top: 80px;
}

/* 头部链接颜色修改 */
.home_top .t a {
  color: #fff;
}

.home_top .t a:hover {
  color: #990808;
}

/**/
.nav_tz {
  position: absolute;
  width: 100%;
  left: 0;
  top: 54px;
}

.w-1200 {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 0 30px 0;
}

.nav-left {
  width: 757px;
  float: left;
  border-right: 1px solid #b8c1d0;
  padding-bottom: 20px;
}

.nav-left>h4>a {
  display: block;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #333333;
  cursor: pointer;
}

.nav-left>h4>a>small {
  font-size: 13px;
  color: red;
  display: inline-block;
  margin-left: 5px;
}

.nav-list {
  width: 25%;
  float: left;
  text-align: left;
  margin: 3px 0 7px;
}

.nav-list>h5>a {
  display: inline-block;
  font-size: 17px;
  color: #14264e;
  margin-bottom: 10px;
  text-align: left;
  padding-left: 10px;
  cursor: pointer;
  border-left: 2px solid rgba(232, 240, 245, 0);
}

.nav-list:hover>h5>a {
  border-left: 2px solid #cc0000;
  color: #cc0000;
}

.nav-list>ul {
  padding-left: 10px;
}

.nav-list>ul li {
  margin: 3px 0 9px;
}

.nav-list>ul li a {
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  color: #555555;
}

.nav-list>ul li a:hover {
  color: #cc0000;
}

.nav-left>.nav-list:nth-of-type(5) {
  clear: left;
}

.nav-left>.nav-list:nth-of-type(9) {
  clear: left;
}

.nav-left>.nav-list:nth-of-type(13) {
  clear: left;
}

.nav-left>.nav-list:nth-of-type(17) {
  clear: left;
}

.nav-right {
  float: right;
  width: 443px;
}

.nav-tu {
  padding: 32px 0 20px;
}

.navTu {
  margin-bottom: 20px;
}

.nav-tu>h4>a {
  display: inline-block;
  background: #cc0000;
  width: 254px;
  height: 48px;
  line-height: 48px;
  color: white;
  letter-spacing: 2px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-tu>h4>a>small {
  font-size: 10px;
}

.nav-tu>h4>a>span {
  display: inline-block;
  margin: 0 10px 0 0;
  height: 40px;
}

.navAll .nav-list {
  width: 20%;
  min-height: 200px;
  border-right: 1px dashed #c5c8cb;
  ;
  float: left;
  text-align: center;
  margin-top: 15px;
  border-right: 1px dashed #c5c8cb;
}

.navAll .nav-list:nth-child(5) {
  border: none
}

.navbar2 {
  position: absolute;
  display: none;
  text-align: center;
  width: 100%;
  background: rgba(232, 240, 245, 0.95);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#E5e9f5f5, endColorstr=#E5e9f5f5);
  left: 0;
  top: 54px;
}

/* 左侧浮层样式 */

.sider_left {
  position: fixed;
  left: 0;
  top: 124px;
  z-index: 10002;
}

.sl_online_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 270px;
  box-sizing: border-box;
  background-color: #dd1721;
  cursor: pointer;
  transition: .4s;
  z-index: 50;
  border-radius: 0 5px 5px 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
}

.sl_online {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 48px 8px;
  transform: translate(-50%, -50%);
  transition: .4s;
}

.sl_online h3 {
  width: 27px;
  height: 27px;
  margin-bottom: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  padding: 0;
}

.sl_online span {
  width: 27px;
  font-size: 20px;
  color: #fff;
}

.sl_area {
  position: absolute;
  left: 0;
  top: 0;
  width: 170px;
  padding-left: 34px;
  box-sizing: border-box;
  transform: translateX(-240px);
  transition: .4s;
  z-index: 30;
}

.sl_name dt {
  line-height: 45px;
  font-size: 16px;
  color: #333333;
  text-align: center;
  background-color: #e7e7e7;
  font-weight: bold
}

.sl_name dd {
  padding: 7px 6px;
  background-color: #fff;
}

.sl_name ul {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/*.sl_name ul:before{content: ""; position: absolute; border-left: 2px solid #d9d9d9; left: 50%; top: 8px; bottom: 14px; margin-left: -1px; height: 100%;}*/
.sl_name li {
  font-size: 14px;
  color: #444444;
  line-height: 24px;
  transition: .4s;
  cursor: pointer;
}

.sl_name li:hover {
  color: #dd1721;
}

.sl_name a {
  color: inherit;
  text-decoration: none;
}

.sl_area_anim {
  transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  transition: .4s ease-in-out;
  -moz-transition: .4s ease-in-out;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
}

.sl_close {
  position: absolute;
  left: 12px;
  top: 10px;
  width: 12px;
  height: 12px;
  background-image: url("../images/close_03.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
  z-index: 80;
  cursor: pointer;
}

.selected .sl_close {
  display: block;
}

.sl_name>dl:first-of-type>dt {
  border-top-right-radius: 10px;
}

.sider-lxb dt {
  position: relative;
  background: #dd1721;
  line-height: 18px;
  color: #fff;
  padding: 12px 0;
}

.sider-lxb .lxb-box {
  position: absolute;
  bottom: 0;
  right: -165px;
  border-radius: 5px;
  width: auto;
  height: auto;
  padding: 10px;
  background: #8f070e;
  display: none;
}

.sider-lxb:hover .lxb-box {
  display: block;
}

.sider-lxb .lxb-box:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 10px solid #8f070e;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: absolute;
  left: -10px;
  bottom: 10px;
}

/**/
.footer-lu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  z-index: 200;
  background: url("/templates/default/lukewen0613/images/fot-lu.jpg?zhounian924")top center no-repeat;
  background-size: auto 100%;
  cursor: pointer;
}

.lu-fot {
  height: 100%;
  position: relative;
}

.lu-form {
  position: absolute;
  top: 46px;
  right: 83px;
  width: 476px;
}

.lu-form form label {
  display: inline-block;
  margin-bottom: 5px;
  float: left;
}

.lu-form form label input {
  width: 160px;
  height: 35px;
  line-height: 27px;
  background-color: #fff;
  padding: 0 20px 0 10px;
  font-size: 14px;
  color: #666;
  position: relative;
  border: 1px solid rgba(0, 0, 0, .3);
  font-weight: bold;
}

.lu-form form label input[type="button"] {
  background: #fa1a1a;
  color: white;
  border-radius: 10px;
  width: 115px;
  margin-left: 15px;
}

.lu-form form .tell {
  margin-left: 20px;
}

.lu-close {
  width: 20px;
  height: auto;
  display: block;
  margin-top: 5px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: -30px;
  background: red;
}


.axrd_guoMain .slick-dots li.slick-active button {
  background: #cc0000 !important;
}

.axrd_guoMain .slick-dots li button {
  border-radius: 50% !important;
  background: #ffffff !important;
}

.axrd_guoMain .slick-dots {
  bottom: 39px !important;
}

/* 侧边栏914 */
#jasiderbar914 {
  width: 70px;
  height: 390px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition-property: opacity, right;
  transition-duration: 0.5s, 0.5s;
  transition-delay: ease, ease;
  z-index: 9999;
}
#jasiderbar914 a{
  // display: inline !important;
}
#jasiderbar914 .clearfix {
  overflow: hidden;
  zoom: 1;
}

#jasiderbar914 img {
  display: block;
  margin: 0 auto;
}

.jasiderbar914xclick {
  opacity: 0 !important;
  right: -70px !important;
}

/* 自助移民/移民费用/澳星直播/微信咨询/咨询热线/top */
.jasiderbar914-zzym,
.jasiderbar914-zmfy,
.jasiderbar914-axzz,
.jasiderbar914-wwzx,
.jasiderbar914-zzrx,
.jasiderbar914-top {
  width: 70px;
  height: 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px dashed rgb(218, 218, 218);
  box-sizing: border-box;
}

.jasiderbar914-top {
  height: 40px !important;
  border: none !important;
}

.jasiderbar914w,
.jasiderbar914r {
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  transition: top 0.3s ease;
  cursor: pointer;
}

.jasiderbar914w>div {
  text-align: center;
}

.jasiderbar914r>div {
  text-align: center;
}

.jasiderbar914w>div div {
  font-size: 14px;
  color: rgb(58, 58, 58);
  line-height: 18px;
}

.jasiderbar914r>div div {
  font-size: 14px;
  color: rgb(58, 58, 58);
  line-height: 18px;
}

.jasiderbar914w>div img {
  margin-bottom: 2px !important;
}

.jasiderbar914r>div img {
  margin-bottom: 2px !important;
}

.jasiderbar914r {
  background-image: linear-gradient(-13deg, rgb(236, 35, 35) 0%, rgb(222, 64, 64) 69%, rgb(207, 92, 92) 100%);
  background-image: -moz-linear-gradient(-13deg, rgb(236, 35, 35) 0%, rgb(222, 64, 64) 69%, rgb(207, 92, 92) 100%);
  background-image: -webkit-linear-gradient(-13deg, rgb(236, 35, 35) 0%, rgb(222, 64, 64) 69%, rgb(207, 92, 92) 100%);
  background-image: -ms-linear-gradient(-13deg, rgb(236, 35, 35) 0%, rgb(222, 64, 64) 69%, rgb(207, 92, 92) 100%);
}

.jasiderbar914r>div div {
  color: rgb(255, 255, 255) !important;
}


.jasiderbar914-zzym:hover .jasiderbar914w {
  top: -70px;
}

.jasiderbar914-zzym:hover .jasiderbar914r {
  top: -70px;
  text-decoration: none;
}

.jasiderbar914-zmfy:hover .jasiderbar914w {
  top: -70px;
}

.jasiderbar914-zmfy:hover .jasiderbar914r {
  top: -70px;
  text-decoration: none;
}

.jasiderbar914-axzz:hover .jasiderbar914w {
  top: -70px;
}

.jasiderbar914-axzz:hover .jasiderbar914r {
  top: -70px;
  text-decoration: none;
}

.jasiderbar914-wwzx:hover .jasiderbar914w {
  top: -70px;
}

.jasiderbar914-wwzx:hover .jasiderbar914r {
  top: -70px;
  text-decoration: none;
}

.jasiderbar914-zzrx:hover .jasiderbar914w {
  top: -70px;
}

.jasiderbar914-zzrx:hover .jasiderbar914r {
  top: -70px;
  text-decoration: none;
}

.jasiderbar914-top:hover .jasiderbar914w {
  top: -40px;
}

.jasiderbar914-top:hover .jasiderbar914r {
  top: -40px;
  text-decoration: none;
}

/* x */
.jasiderbar914-x {
  width: 12px;
  height: 12px;
  background: url('../img/jpcjasiderbar914x.png') center no-repeat;
  background-size: 100%;
  position: absolute;
  top: -14px;
  right: 0;
}

/* wx */
.jasiderbar914-wx {
  width: 126px;
  height: 134px;
  background: url('../img/jpcjasiderbar914wx1.png') center no-repeat;
  background-size: 100%;
  position: absolute;
  top: 124px;
  left: -115px;
  z-index: -2;
  display: none;
  box-sizing: border-box;
  padding-top: 4px;
}

.jasiderbar914wxblock {
  display: block !important;
}

.jasiderbar914-wx>img {
  width: 80px;
  height: 80px;
  position: relative;
  top: 11px;
  left: 16px;
  margin: 0 !important;
}

.jasiderbar914-wx div {
  margin: 10px 0 0 22px;
}

.jasiderbar914-wx div img {
  width: 13px;
  height: 10px;
  display: inline-block !important;
  margin: 0 3px 0 0 !important;
}

.jasiderbar914-wx div span {
  font-size: 11px;
  color: rgb(58, 58, 58);
  line-height: 1;
}

/* ipone */
.jasiderbar914-ipone {
  width: 126px;
  height: 114px;
  background: url("../img/jpcjasiderbar914ipone.png") center no-repeat;
  background-size: 100%;
  position: absolute;
  top: 214px;
  left: -118px;
  z-index: -2;
  display: block;
  cursor: pointer;
}

.jasiderbar914iponeblock {
  display: none !important;
}

.jasiderbar914-zzrxact {}

.jasiderbar914-zzrxact .jasiderbar914w {
  top: -70px !important;
}

.jasiderbar914-zzrxact .jasiderbar914r {
  top: -70px !important;
}


#pc-baywindow {
  display: block;
  width: 300px;
  height: 225px;
  background: url('/templates/default/img/jpcbaywindow.jpg') center no-repeat;
  background-size: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  cursor: pointer;
}

#pc-baywindowx {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 15px;
  right: 12px;
  cursor: pointer;
}

.pc-baywindowxactive {
  display: none !important;
}

.guo_visax .box .right .top {
  border-bottom: none !important;
}

.guo_visax .box .right .guo_qtqz ol li {
  height: 130px !important;
  padding: none !important;
  border-bottom: none !important;
  background: url('../images/jothervisa1.png') center no-repeat;
  margin-bottom: 20px;
  padding: 16px 12px 0 12px;
  overflow: hidden;
  position: relative;
  border-radius: 10px !important;
}

.guo_visax .box .right .guo_qtqz ol li:hover {
  background: url('../images/jothervisa2.png') center no-repeat;
}

.guo_visax .box .right .guo_qtqz ol li div {
  color: rgb(43, 58, 109) !important;
  line-height: 1 !important;
  font-weight: bold;
}

.guo_visax .box .right .guo_qtqz ol li p {
  margin-top: 8px !important;
  font-size: 14px !important;
  color: rgb(153, 153, 153) !important;
  font-weight: bold;
  line-height: 1.714 !important;
}

.guo_visax .box .right .guo_qtqz ol li:after {
  content: '';
  display: inline-block;
  width: 49px;
  height: 18px;
  background: url('../images/jothervisa3.png') center no-repeat;
  position: absolute;
  bottom: 13px;
  right: 57px;
}